phpPackages.composer: 2.0.13 -> 2.0.14

https://github.com/composer/composer/releases/tag/2.0.14
This commit is contained in:
Thomas Gerbet 2021-05-24 16:47:17 +02:00
parent 709785f944
commit 40dd7e38cc

View file

@ -1,14 +1,14 @@
{ mkDerivation, fetchurl, makeWrapper, unzip, lib, php }:
let
pname = "composer";
version = "2.0.13";
version = "2.0.14";
in
mkDerivation {
inherit pname version;
src = fetchurl {
url = "https://getcomposer.org/download/${version}/composer.phar";
sha256 = "sha256-EW/fB8ySavZGY1pqvJLYiv97AqXcNlOPgcUKfSc2bb8=";
sha256 = "sha256-KUVLQVWJaMpjS/Xi1NB/8iddkbY3p216BeZ0fTbdNHM=";
};
dontUnpack = true;
@ -29,6 +29,7 @@ mkDerivation {
description = "Dependency Manager for PHP";
license = licenses.mit;
homepage = "https://getcomposer.org/";
changelog = "https://github.com/composer/composer/releases/tag/${version}";
maintainers = with maintainers; [ offline ] ++ teams.php.members;
};
}