Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 28 lines 723 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 php, 5}: 6 7php.buildComposerProject (finalAttrs: { 8 pname = "deployer"; 9 version = "7.4.0"; 10 11 src = fetchFromGitHub { 12 owner = "deployphp"; 13 repo = "deployer"; 14 rev = "v${finalAttrs.version}^"; 15 hash = "sha256-nSrW4o0Tb8H056AAjjMzbsAVvWY2z1pdWmPFZDpDr1k="; 16 }; 17 18 vendorHash = "sha256-BDq2uryNWC31AEAEZJL9zGaAPbhXZ6hmfpsnr4wlixE="; 19 20 meta = { 21 changelog = "https://github.com/deployphp/deployer/releases/tag/v${finalAttrs.version}"; 22 description = "The PHP deployment tool with support for popular frameworks out of the box"; 23 homepage = "https://deployer.org/"; 24 license = lib.licenses.mit; 25 mainProgram = "dep"; 26 maintainers = lib.teams.php.members; 27 }; 28})