diff options
Diffstat (limited to 'web/cgit-taz')
-rw-r--r-- | web/cgit-taz/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/cgit-taz/default.nix b/web/cgit-taz/default.nix index 21f19eaa7d19..d18c782907dc 100644 --- a/web/cgit-taz/default.nix +++ b/web/cgit-taz/default.nix @@ -4,13 +4,13 @@ # In the first round this will just serve my GitHub repositories until # I'm happy with the display. -{ pkgs, ... }: +{ depot, ... }: -with pkgs.third_party; +with depot.third_party; let sourceFilter = writeShellScriptBin "cheddar-about" '' - exec ${pkgs.tools.cheddar}/bin/cheddar --about-filter $@ + exec ${depot.tools.cheddar}/bin/cheddar --about-filter $@ ''; cgitConfig = writeText "cgitrc" '' # Global configuration @@ -18,7 +18,7 @@ let enable-http-clone=1 readme=:README.md about-filter=${sourceFilter}/bin/cheddar-about - source-filter=${pkgs.tools.cheddar}/bin/cheddar + source-filter=${depot.tools.cheddar}/bin/cheddar enable-log-filecount=1 enable-log-linecount=1 enable-follow-links=1 |