Files
nixos/pkgs/hms/default.nix
T

16 lines
225 B
Nix
Raw Normal View History

2025-07-28 22:13:03 -05:00
{
writeShellApplication,
coreutils-full,
nix-output-monitor,
...
}:
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);
}