1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Merge pull request #9098 from mayflower/composer-update

phpPackages.composer: 1.0.0-alpha9 -> 1.0.0-alpha10
This commit is contained in:
Arseniy Seroka 2015-08-04 16:34:47 +03:00
commit adc04192cf

View file

@ -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