This repository has no description
1{
2 writeScriptBin,
3 bash,
4 coreutils,
5 imagemagick,
6 ...
7}:
8
9writeScriptBin "prefon" (
10 builtins.replaceStrings
11 [
12 "#!/bin/sh"
13 "printf"
14 "convert"
15 "rm"
16 ]
17 [
18 "#!${bash}/bin/sh"
19 "${coreutils}/bin/printf"
20 "${imagemagick}/bin/convert"
21 "${coreutils}/bin/rm"
22 ]
23 (builtins.readFile ../scritps/prefon)
24)