flendor/package.nix

16 lines
173 B
Nix
Raw Normal View History

2025-07-25 23:45:21 +02:00
{
writeShellApplication,
jq,
2025-07-26 15:39:07 +02:00
rsync,
2025-07-25 23:45:21 +02:00
}:
writeShellApplication {
2025-07-26 15:39:07 +02:00
name = "flendor";
2025-07-25 23:45:21 +02:00
runtimeInputs = [
jq
2025-07-26 15:39:07 +02:00
rsync
2025-07-25 23:45:21 +02:00
];
text = builtins.readFile ./flendor;
}