flendor/package.nix
2025-07-26 15:39:07 +02:00

15 lines
173 B
Nix

{
writeShellApplication,
jq,
rsync,
}:
writeShellApplication {
name = "flendor";
runtimeInputs = [
jq
rsync
];
text = builtins.readFile ./flendor;
}