This commit is contained in:
Lukas Wurzinger 2025-06-01 16:47:14 +02:00
commit ee5313c9bf
No known key found for this signature in database
5 changed files with 471 additions and 0 deletions

19
package.nix Normal file
View file

@ -0,0 +1,19 @@
{
writeShellApplication,
util-linux,
jq,
e2fsprogs,
dosfstools,
}:
writeShellApplication {
name = "zap";
runtimeInputs = [
util-linux
jq
e2fsprogs
dosfstools
];
text = builtins.readFile ./zap;
}