mirror of
https://github.com/nix-community/flakelight.git
synced 2025-03-13 05:28:12 +01:00
11 lines
176 B
Nix
11 lines
176 B
Nix
|
{ writeShellApplication
|
||
|
, nix
|
||
|
, git
|
||
|
, gnutar
|
||
|
}:
|
||
|
writeShellApplication {
|
||
|
name = "pre-commit";
|
||
|
runtimeInputs = [ nix git gnutar ];
|
||
|
text = builtins.readFile ./pre-commit;
|
||
|
}
|