rm-sync/default.nix

10 lines
178 B
Nix
Raw Normal View History

2025-02-13 13:11:50 +01:00
{ writeShellApplication, coreutils, openssh }:
2025-02-13 12:06:37 +01:00
writeShellApplication {
name = "rm-sync";
runtimeInputs = [ coreutils openssh ];
text = builtins.readFile ./rm-sync.sh;
}