Files
nixos/pkgs/hms/default.nix
T
2025-07-28 22:13:03 -05:00

16 lines
225 B
Nix

{
writeShellApplication,
coreutils-full,
nix-output-monitor,
...
}:
writeShellApplication {
name = "hms";
runtimeInputs = [
coreutils-full
nix-output-monitor
];
text = (builtins.readFile ./hms.sh);
}