summary refs log tree commit diff
path: root/pkgs/top-level/php-packages.nix
diff options
context:
space:
mode:
authorRobin Gloster <robin@loc-com.de>2015-08-02 12:21:10 +0000
committerRobin Gloster <robin@loc-com.de>2015-08-03 10:04:22 +0000
commit74afccb3adfc1d0891691f7a0254b7702a48a3b2 (patch)
tree2af7f023e34168f4a3ce5fb2511706c4eaecd071 /pkgs/top-level/php-packages.nix
parentda0b6a4fdf0ab167bfc943176197159f10f1a8b7 (diff)
downloadnixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.tar
nixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.tar.gz
nixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.tar.bz2
nixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.tar.lz
nixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.tar.xz
nixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.tar.zst
nixpkgs-74afccb3adfc1d0891691f7a0254b7702a48a3b2.zip
phpPackages.composer: 1.0.0-alpha9 -> 1.0.0-alpha10
Diffstat (limited to 'pkgs/top-level/php-packages.nix')
-rw-r--r--pkgs/top-level/php-packages.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix
index 03259dde82d..bfd741ccb4b 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -102,11 +102,11 @@ let self = with self; {
 
   composer = pkgs.stdenv.mkDerivation rec {
     name = "composer-${version}";
-    version = "1.0.0-alpha9";
+    version = "1.0.0-alpha10";
 
     src = pkgs.fetchurl {
-      url = "https://getcomposer.org/download/1.0.0-alpha9/composer.phar";
-      sha256 = "1x7i9xs9xggq0qq4kzrwh2pky8skax0l829zwwsy3hcvch3irvrk";
+      url = "https://getcomposer.org/download/${version}/composer.phar";
+      sha256 = "0a26zlsr2jffcqlz8z6l8s6c6nlyfj2gxqfgx76knx5wch1psb4z";
     };
 
     phases = [ "installPhase" ];
@@ -123,7 +123,7 @@ let self = with self; {
       description = "Dependency Manager for PHP";
       license = licenses.mit;
       homepage = https://getcomposer.org/;
-      maintainers = with maintainers; [offline];
+      maintainers = with maintainers; [ globin offline ];
     };
   };
 }; in self