phpPackages.composer: 1.0.0-alpha9 -> 1.0.0-alpha10

This commit is contained in:
Robin Gloster 2015-08-02 12:21:10 +00:00
parent da0b6a4fdf
commit 74afccb3ad

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