13 lines
199 B
Nix
13 lines
199 B
Nix
{
|
|
writeShellApplication,
|
|
...
|
|
}:
|
|
|
|
let
|
|
name = "syncthing-resolve-conflicts";
|
|
text = builtins.readFile ./${name}.sh;
|
|
in
|
|
writeShellApplication {
|
|
inherit name text;
|
|
meta.mainProgram = name;
|
|
}
|