flakelight/packages/pre-commit.nix

11 lines
176 B
Nix
Raw Normal View History

{ writeShellApplication
, nix
, git
, gnutar
}:
writeShellApplication {
name = "pre-commit";
runtimeInputs = [ nix git gnutar ];
text = builtins.readFile ./pre-commit;
}