nixfiles/packages/nf-update/default.nix
2024-10-18 18:23:41 -04:00

13 lines
175 B
Nix

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