20 lines
238 B
Nix
20 lines
238 B
Nix
|
{
|
||
|
writeShellApplication,
|
||
|
util-linux,
|
||
|
jq,
|
||
|
e2fsprogs,
|
||
|
dosfstools,
|
||
|
}:
|
||
|
writeShellApplication {
|
||
|
name = "disk";
|
||
|
|
||
|
runtimeInputs = [
|
||
|
util-linux
|
||
|
jq
|
||
|
e2fsprogs
|
||
|
dosfstools
|
||
|
];
|
||
|
|
||
|
text = builtins.readFile ./disk.bash;
|
||
|
}
|