about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/cheddar/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/cheddar/default.nix b/tools/cheddar/default.nix
index 66874db286..b7c5070b3d 100644
--- a/tools/cheddar/default.nix
+++ b/tools/cheddar/default.nix
@@ -1,13 +1,13 @@
-{ pkgs, ... }:
+{ depot, pkgs, ... }:
 
-pkgs.naersk.buildPackage {
+depot.third_party.naersk.buildPackage {
   src = ./.;
   doDoc = false;
 
   override = x: {
     # Use our custom bat syntax set, which is everything from upstream,
     # plus additional languages we care about.
-    BAT_SYNTAXES = "${pkgs.bat_syntaxes}";
+    BAT_SYNTAXES = "${depot.third_party.bat_syntaxes}";
 
     # LLVM packages (why are they even required?) are not found
     # automatically if added to buildInputs, hence this ...