aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/php-xyz.scm
blob: bef5a2dcb48152fe1a7912c1a36d6ceafe25e2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages php-xyz)
  #:use-module (gnu packages)
  #:use-module (gnu packages php)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system copy)
  #:use-module (guix utils)
  #:use-module ((guix licenses) #:prefix license:))

(define-public composer-classloader
  (package
    (name "composer-classloader")
    (version "1.9.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/composer/composer")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0127zmmg3yx84ljngfs86q7kjhyypybkf4d1ihfrfnzgynzxfxdf"))))
    (build-system copy-build-system)
    (arguments
     `(#:install-plan
       '(("src/Composer/Autoload/ClassLoader.php" "/share/web/composer/"))))
    (home-page "https://getcomposer.org")
    (synopsis "PHP class loader extracted from the composer package")
    (description "This package contains the class loader class used by Composer to
build its autoloading feature.  This package is used by the composer-build-system
to build its own store-aware autoloading feature.")
    (license license:expat)))
-14gnu: ghc@4: Build without referring to packages in commencement.scm.Ludovic Courtès 2022-02-14gnu: ghc@4: Use 'search-patches'.Ludovic Courtès 2022-02-14gnu: nhc98: Build with the current tool chain.Ludovic Courtès 2022-02-07gnu: Add nhc98.Ricardo Wurmus 2022-02-07gnu: Add ghc-4.Ricardo Wurmus 2021-12-13gnu: Simplify package inputs.Ludovic Courtès 2021-11-30gnu: ghc: Fix build on i686-linux.zimoun 2021-11-21gnu: ghc: Depend on 'git-minimal/fixed'.Ludovic Courtès 2021-11-18gnu: ghc: Rely on a fixed version of Git.Ludovic Courtès 2021-10-12Merge remote-tracking branch 'origin/master' into core-updates-frozen.Mathieu Othacehe 2021-10-09gnu: ghc-8.10: Disable failing test on i686.Lars-Dominik Braun 2021-10-08gnu: ghc-8: Update to 8.10.Lars-Dominik Braun 2021-09-17Merge branch 'master' into core-updates-frozenMarius Bakke 2021-09-15gnu: ghc-8.8: Rename to ghc-next.Lars-Dominik Braun 2021-09-15gnu: Add ghc-8.10.Xinglu Chen 2021-07-29Merge branch 'master' into core-updates-frozenMarius Bakke 2021-07-26gnu: ghc-8.8: Update to 8.8.4.Matthew James Kraai 2021-07-24gnu: Use 'search-input-file' when looking for *.so and *.a.Ludovic Courtès