diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-04-13 14:41:50 +0200 |
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-04-13 14:41:50 +0200 |
| commit | 14471872916d71eddc4524c6785418c134816cfe (patch) | |
| tree | 7e0767b80c201f9350f7e45a42902e7f918834ca | |
| parent | 17f2ffb9a5d4de4bfd2840d78d8a6f864d09a834 (diff) | |
| download | nixos-14471872916d71eddc4524c6785418c134816cfe.tar nixos-14471872916d71eddc4524c6785418c134816cfe.tar.gz nixos-14471872916d71eddc4524c6785418c134816cfe.tar.bz2 nixos-14471872916d71eddc4524c6785418c134816cfe.tar.xz nixos-14471872916d71eddc4524c6785418c134816cfe.zip | |
less fancy syntax
| -rw-r--r-- | ymir.nix | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -70,7 +70,8 @@ in rec { | |||
| 70 | in '' | 70 | in '' |
| 71 | wrapProgram $out/lib/cgit/filters/syntax-highlighting.py --prefix PYTHONPATH ':' ${pythonEnv}/lib/*/site-packages | 71 | wrapProgram $out/lib/cgit/filters/syntax-highlighting.py --prefix PYTHONPATH ':' ${pythonEnv}/lib/*/site-packages |
| 72 | tmpFile=$(mktemp) | 72 | tmpFile=$(mktemp) |
| 73 | { echo "\#\!${pythonEnv}/bin/python3"; tail -n +2 $out/lib/cgit/filters/html-converters/md2html } > $tmpFile | 73 | echo "\#\!${pythonEnv}/bin/python3" >$tmpFile |
| 74 | tail -n +2 $out/lib/cgit/filters/html-converters/md2html >>$tmpFile | ||
| 74 | mv -v $tmpFile $out/lib/cgit/filters/html-converters/md2html | 75 | mv -v $tmpFile $out/lib/cgit/filters/html-converters/md2html |
| 75 | wrapProgram $out/lib/cgit/filters/html-converters/md2html --prefix PYTHONPATH ':' ${pythonEnv}/lib/*/site-packages | 76 | wrapProgram $out/lib/cgit/filters/html-converters/md2html --prefix PYTHONPATH ':' ${pythonEnv}/lib/*/site-packages |
| 76 | wrapProgram $out/lib/cgit/filters/html-converters/man2html --prefix PATH ':' ${pkgs.groff}/bin | 77 | wrapProgram $out/lib/cgit/filters/html-converters/man2html --prefix PATH ':' ${pkgs.groff}/bin |
