depot/packages/tools/graf/default.nix

15 lines
177 B
Nix
Raw Permalink Normal View History

2023-05-31 01:30:29 +03:00
{
writeShellApplication,
curl, gum, jq
}:
writeShellApplication {
name = "graf";
runtimeInputs = [
curl
gum
jq
];
text = builtins.readFile ./graf.sh;
}