16 lines
225 B
Nix
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);
|
|
}
|