rm-sync/default.nix

9 lines
177 B
Nix

{ writeShellApplication, coreutils, openssh}:
writeShellApplication {
name = "rm-sync";
runtimeInputs = [ coreutils openssh ];
text = builtins.readFile ./rm-sync.sh;
}