about summary refs log tree commit diff
path: root/web/cgit-taz
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-02-21T12·47+0000
committerVincent Ambo <tazjin@google.com>2020-02-21T13·54+0000
commit4bbbb58cb537014dd8b0b3c3c560c039ac57ad89 (patch)
treeffd6c2c6758f655801ea6497b3dd9d2f2d04ebc9 /web/cgit-taz
parent5d9d84f4cfdbed049e71ce6f15bb1ad8650f7acf (diff)
chore: Rename pkgs->depot in all Nix file headers r/559
Diffstat (limited to 'web/cgit-taz')
-rw-r--r--web/cgit-taz/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/cgit-taz/default.nix b/web/cgit-taz/default.nix
index 21f19eaa7d..d18c782907 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