Merge pull request #126356 from drupol/feature/add-symfony-cli

This commit is contained in:
Sandro 2021-06-10 10:21:22 +02:00 committed by GitHub
commit 9e26d882c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -2677,6 +2677,16 @@
githubId = 10198051;
name = "Drew Risinger";
};
drupol = {
name = "Pol Dellaiera";
email = "pol.dellaiera@protonmail.com";
github = "drupol";
githubId = 252042;
keys = [{
longkeyid = "ed25519/0x0AAF2901E8040715";
fingerprint = "85F3 72DF 4AF3 EF13 ED34 72A3 0AAF 2901 E804 0715";
}];
};
dschrempf = {
name = "Dominik Schrempf";
email = "dominik.schrempf@gmail.com";

View file

@ -0,0 +1,29 @@
{ stdenvNoCC, fetchurl, lib }:
stdenvNoCC.mkDerivation rec {
pname = "symfony-cli";
version = "4.25.2";
src = fetchurl {
url = "https://github.com/symfony/cli/releases/download/v${version}/symfony_linux_amd64.gz";
sha256 = "8bfa53c1479883e9b48d2e4e5d3f6f7a511df73d65fe5c7b07a4890ee2c75c7e";
};
dontBuild = true;
unpackPhase = ''
gunzip <$src >symfony
'';
installPhase = ''
install -D -t $out/bin symfony
'';
meta = with lib; {
description = "Symfony CLI";
homepage = "https://symfony.com/download";
license = licenses.unfree;
maintainers = with maintainers; [ drupol ];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -14027,6 +14027,8 @@ in
swiftformat = callPackage ../development/tools/swiftformat { };
symfony-cli = callPackage ../development/tools/symfony-cli { };
swiftshader = callPackage ../development/libraries/swiftshader { };
systemfd = callPackage ../development/tools/systemfd { };