depot/packages/tools/pin/default.nix
2022-07-30 19:41:58 +02:00

13 lines
166 B
Nix

{
writeShellApplication,
nix, npins
}:
writeShellApplication {
name = "pin";
runtimeInputs = [
nix
npins
];
text = builtins.readFile ./pin.sh;
}