depot/packages/tools/pin/default.nix

15 lines
177 B
Nix
Raw Normal View History

2022-07-30 20:39:22 +03:00
{
writeShellApplication,
nix, npins, jq
2022-07-30 20:39:22 +03:00
}:
writeShellApplication {
name = "pin";
runtimeInputs = [
nix
npins
jq
2022-07-30 20:39:22 +03:00
];
text = builtins.readFile ./pin.sh;
}