flendor/package.nix

14 lines
149 B
Nix
Raw Normal View History

2025-07-25 23:45:21 +02:00
{
writeShellApplication,
jq,
}:
writeShellApplication {
name = "jq";
runtimeInputs = [
jq
];
text = builtins.readFile ./flendor;
}