nixfiles/packages/nf-build-system/default.nix

13 lines
175 B
Nix

{
wrapShellScriptBin,
pkgs,
}:
wrapShellScriptBin "nf-build-system" ./build-system.sh {
depsRuntimePath = with pkgs; [
git
cachix
jq
nix
curl
];
}