mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
10 lines
213 B
Nix
10 lines
213 B
Nix
{
|
|
writers,
|
|
nix-prefetch-git,
|
|
jq,
|
|
}:
|
|
writers.writeDashBin "nix-git" ''
|
|
${nix-prefetch-git}/bin/nix-prefetch-git "$@" 2> /dev/null \
|
|
| ${jq}/bin/jq -r '"rev = \"\(.rev)\";\nsha256 = \"\(.sha256)\";"'
|
|
''
|