about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/php-packages/phing/default.nix
blob: 390904724e7bbbc1040e2e871f28e485de6ed1c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ mkDerivation, fetchurl, makeWrapper, lib, php }:

let
  pname = "phing";
  version = "2.17.4";
in
mkDerivation {
  inherit pname version;

  src = fetchurl {
    url = "https://github.com/phingofficial/phing/releases/download/v${version}/phing-${version}.phar";
    sha256 = "sha256-3QZsl5QJkFX5Z4RovMtw2ELCp8Zl4xiZsIBikakJ474=";
  };

  dontUnpack = true;

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    runHook preInstall
    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"
    runHook postInstall
  '';

  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;
  };
}