diff options
author | tv <tv@krebsco.de> | 2020-07-13 11:39:42 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-07-13 11:39:42 +0200 |
commit | 2e26408bfecf27bc70f7b4955c499029bccfa9f4 (patch) | |
tree | b4c70662bffd31ff92e4ad15c901486cce8e6b73 | |
parent | 53f52bb1b49894e62447f722faaf864b3a819215 (diff) |
tv cgit: use algol_nu highlighting style
-rw-r--r-- | tv/2configs/gitrepos.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tv/2configs/gitrepos.nix b/tv/2configs/gitrepos.nix index 10bfb507d..59090c8e3 100644 --- a/tv/2configs/gitrepos.nix +++ b/tv/2configs/gitrepos.nix @@ -5,6 +5,29 @@ with import <stockholm/lib>; let { body = { + + nixpkgs.config.packageOverrides = super: { + cgit = pkgs.symlinkJoin { + name = "${super.cgit.name}-tv"; + paths = [ + (pkgs.runCommand "${super.cgit.name}-tv-overrides" { + } /* sh */ '' + mkdir -p $out/lib/cgit/filters + cd $out/lib/cgit/filters + cp \ + ${super.cgit}/lib/cgit/filters/syntax-highlighting.py \ + ${super.cgit}/lib/cgit/filters/.syntax-highlighting.py-wrapped \ + . + sed -i "s:${super.cgit}:$out:" syntax-highlighting.py + sed -i ' + s:^\(formatter =\).*:\1 HtmlFormatter(style="algol_nu"): + ' .syntax-highlighting.py-wrapped + '') + super.cgit + ]; + }; + }; + krebs.git = { enable = true; cgit = { |