infra/overlays/git-gc-preserve/default.nix

10 lines
177 B
Nix
Raw Normal View History

{ writeShellApplication, git, nettools }:
writeShellApplication {
name = "git-gc-preserve";
runtimeInputs = [ git nettools ];
text = (builtins.readFile ./script.sh);
}