32 lines
834 B
Nix
32 lines
834 B
Nix
|
{ mkDerivation, fetchurl, makeWrapper, lib, php }:
|
||
|
let
|
||
|
pname = "phing";
|
||
|
version = "2.17.1";
|
||
|
in
|
||
|
mkDerivation {
|
||
|
inherit pname version;
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://www.phing.info/get/phing-${version}.phar";
|
||
|
sha256 = "sha256-Sf2fdy9b1wmXEDA3S4CRksH/DhAIirIy6oekWE1TNjE=";
|
||
|
};
|
||
|
|
||
|
dontUnpack = true;
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper ];
|
||
|
|
||
|
installPhase = ''
|
||
|
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"
|
||
|
'';
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|