2025-07-28 22:13:03 -05:00
|
|
|
{
|
|
|
|
|
writeShellApplication,
|
|
|
|
|
coreutils-full,
|
|
|
|
|
nix-output-monitor,
|
|
|
|
|
...
|
|
|
|
|
}:
|
2024-10-11 12:28:53 -05:00
|
|
|
|
2025-06-11 01:24:15 -05:00
|
|
|
writeShellApplication {
|
|
|
|
|
name = "hms";
|
2025-07-28 22:13:03 -05:00
|
|
|
runtimeInputs = [
|
|
|
|
|
coreutils-full
|
|
|
|
|
nix-output-monitor
|
|
|
|
|
];
|
2025-06-11 01:24:15 -05:00
|
|
|
text = (builtins.readFile ./hms.sh);
|
|
|
|
|
}
|