mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
27 lines
625 B
Nix
27 lines
625 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, php
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "deployer";
|
|
version = "7.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deployphp";
|
|
repo = "deployer";
|
|
rev = "v${finalAttrs.version}^";
|
|
hash = "sha256-zvK7NwIACAhWN/7D8lVY1Bv8x6xKAp/L826SovQhDYg=";
|
|
};
|
|
|
|
vendorHash = "sha256-BDq2uryNWC31AEAEZJL9zGaAPbhXZ6hmfpsnr4wlixE=";
|
|
|
|
meta = {
|
|
description = "The 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;
|
|
};
|
|
})
|