mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
31 lines
804 B
Nix
31 lines
804 B
Nix
{ mkDerivation, fetchurl, makeWrapper, lib, php }:
|
|
mkDerivation rec {
|
|
pname = "grumphp";
|
|
version = "1.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/phpro/${pname}/releases/download/v${version}/${pname}.phar";
|
|
sha256 = "sha256-3XPMyH2F3ZfRr8DmvlBY3Z6uolhaRraQxwKIskIwPq8=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
install -D $src $out/libexec/${pname}/grumphp.phar
|
|
makeWrapper ${php}/bin/php $out/bin/grumphp \
|
|
--add-flags "$out/libexec/${pname}/grumphp.phar"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A PHP code-quality tool";
|
|
homepage = "https://github.com/phpro/grumphp";
|
|
license = licenses.mit;
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|