From 4bbbb58cb537014dd8b0b3c3c560c039ac57ad89 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 21 Feb 2020 12:47:29 +0000 Subject: chore: Rename pkgs->depot in all Nix file headers --- web/cgit-taz/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'web/cgit-taz/default.nix') 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 -- cgit 1.4.1