nixfiles/packages/nf-update/default.nix

10 lines
139 B
Nix

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