Files
nixos/pkgs/hms/default.nix
T

8 lines
207 B
Nix
Raw Normal View History

2025-06-11 01:24:15 -05:00
{ writeShellApplication, coreutils-full, nix-output-monitor, ... }:
2025-06-11 01:24:15 -05:00
writeShellApplication {
name = "hms";
runtimeInputs = [ coreutils-full nix-output-monitor ];
text = (builtins.readFile ./hms.sh);
}