Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
28 lines
720 B
Nix
28 lines
720 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
php,
|
|
}:
|
|
|
|
php.buildComposerProject2 (finalAttrs: {
|
|
pname = "deployer";
|
|
version = "7.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deployphp";
|
|
repo = "deployer";
|
|
rev = "v${finalAttrs.version}^";
|
|
hash = "sha256-nSrW4o0Tb8H056AAjjMzbsAVvWY2z1pdWmPFZDpDr1k=";
|
|
};
|
|
|
|
vendorHash = "sha256-pUZoQV1CVErnsSu6jVNOJROqBZZ4xymKXm25GW67HmM=";
|
|
|
|
meta = {
|
|
changelog = "https://github.com/deployphp/deployer/releases/tag/v${finalAttrs.version}";
|
|
description = "PHP deployment tool with support for popular frameworks out of the box";
|
|
homepage = "https://deployer.org/";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "dep";
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
})
|