This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 403 B View raw
1{ 2 writeScriptBin, 3 bash, 4 coreutils, 5 ffmpeg, 6 ... 7}: 8 9writeScriptBin "vid2gif" ( 10 builtins.replaceStrings 11 [ 12 "#!/bin/sh" 13 "ffmpeg" 14 "mktemp" 15 "printf" 16 "rm" 17 ] 18 [ 19 "#!${bash}/bin/sh" 20 "${ffmpeg}/bin/ffmpeg" 21 "${coreutils}/bin/mktemp" 22 "${coreutils}/bin/printf" 23 "${coreutils}/bin/rm" 24 ] 25 (builtins.readFile ../scritps/vid2gif) 26)