rm-sync/default.nix

10 lines
177 B
Nix
Raw Normal View History

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