hercules-ci-agent: init at 0.7.2

This commit is contained in:
Robert Hensing
2020-06-21 13:38:22 +02:00
parent 008570968c
commit 7d436b4618
4 changed files with 27 additions and 0 deletions
@@ -0,0 +1,21 @@
{ gnutar, gzip, git, haskell, haskellPackages, lib, makeWrapper }:
let
inherit (haskell.lib) overrideCabal addBuildDepends;
inherit (lib) makeBinPath;
pkg =
# justStaticExecutables is needed due to https://github.com/NixOS/nix/issues/2990
overrideCabal
(addBuildDepends (haskell.lib.justStaticExecutables haskellPackages.hercules-ci-agent) [ makeWrapper ])
(o: {
postInstall = ''
${o.postInstall or ""}
mkdir -p $out/libexec
mv $out/bin/hercules-ci-agent $out/libexec
makeWrapper $out/libexec/hercules-ci-agent $out/bin/hercules-ci-agent --prefix PATH : ${makeBinPath [ gnutar gzip git ]}
'';
});
in pkg // {
meta = pkg.meta // {
position = toString ./default.nix + ":1";
};
}