2021-05-29 01:26:37 +01:00
|
|
|
{ mkDerivation, fetchurl, makeWrapper, installShellFiles, lib, php }:
|
2021-05-05 13:19:41 +01:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "deployer";
|
|
|
|
version = "6.8.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://deployer.org/releases/v${version}/${pname}.phar";
|
|
|
|
sha256 = "09mxwfa7yszsiljbkxpsd4sghqngl08cn18v4g1fbsxp3ib3kxi5";
|
|
|
|
};
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
|
2021-05-29 01:26:37 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
2021-05-05 13:19:41 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D $src $out/libexec/deployer/deployer.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/dep --add-flags "$out/libexec/deployer/deployer.phar"
|
2021-05-29 01:26:37 +01:00
|
|
|
|
|
|
|
# fish support currently broken: https://github.com/deployphp/deployer/issues/2527
|
|
|
|
installShellCompletion --cmd dep \
|
|
|
|
--bash <($out/bin/dep autocomplete --install) \
|
|
|
|
--zsh <($out/bin/dep autocomplete --install)
|
2021-05-05 13:19:41 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A deployment tool for PHP";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "https://deployer.org/";
|
|
|
|
maintainers = with maintainers; teams.php.members;
|
|
|
|
};
|
|
|
|
}
|