This commit is contained in:
Lukas Wurzinger 2025-07-25 23:45:21 +02:00
commit 996bcd0fa1
No known key found for this signature in database
6 changed files with 329 additions and 0 deletions

13
package.nix Normal file
View file

@ -0,0 +1,13 @@
{
writeShellApplication,
jq,
}:
writeShellApplication {
name = "jq";
runtimeInputs = [
jq
];
text = builtins.readFile ./flendor;
}