nixpkgs/pkgs/development/php-packages/phing/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
881 B
Nix
Raw Normal View History

2022-02-24 20:08:05 +00:00
{ mkDerivation, fetchurl, makeWrapper, lib, php }:
let
pname = "phing";
2022-08-01 07:01:37 +00:00
version = "2.17.4";
2022-02-24 20:08:05 +00:00
in
mkDerivation {
inherit pname version;
src = fetchurl {
url = "https://www.phing.info/get/phing-${version}.phar";
2022-08-01 07:01:37 +00:00
sha256 = "sha256-3QZsl5QJkFX5Z4RovMtw2ELCp8Zl4xiZsIBikakJ474=";
2022-02-24 20:08:05 +00:00
};
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
2022-03-13 15:37:51 +00:00
runHook preInstall
2022-02-24 20:08:05 +00:00
mkdir -p $out/bin
install -D $src $out/libexec/phing/phing.phar
makeWrapper ${php}/bin/php $out/bin/phing \
--add-flags "$out/libexec/phing/phing.phar"
2022-03-13 15:37:51 +00:00
runHook postInstall
2022-02-24 20:08:05 +00:00
'';
meta = with lib; {
description = "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant";
license = licenses.lgpl3;
homepage = "https://github.com/phingofficial/phing";
maintainers = with maintainers; teams.php.members;
};
}