mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
e9bddc495d
Closes #253423
28 lines
543 B
Nix
28 lines
543 B
Nix
{ lib,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
makeWrapper,
|
|
gnumake
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "pdk";
|
|
gemdir = ./.;
|
|
exes = [ "pdk" ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram $out/bin/pdk --prefix PATH : ${lib.makeBinPath [ gnumake ]}
|
|
'';
|
|
|
|
passthru.updateScript = bundlerUpdateScript "pdk";
|
|
|
|
meta = with lib; {
|
|
description = "Puppet Development Kit";
|
|
homepage = "https://github.com/puppetlabs/pdk";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ netali ];
|
|
};
|
|
}
|