2025-06-11 01:24:15 -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";
|
|
|
|
|
runtimeInputs = [ coreutils-full nix-output-monitor ];
|
|
|
|
|
text = (builtins.readFile ./hms.sh);
|
|
|
|
|
}
|