nixfiles/packages/nf-update/default.nix

12 lines
155 B
Nix

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