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

12 lines
167 B
Nix

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