about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 7ccd7413db..9a73e99d89 100644
--- a/default.nix
+++ b/default.nix
@@ -87,7 +87,11 @@ in readTree.fix(self: (readDepot {
 }) // {
   # Make the path to the depot available for things that might need it
   # (e.g. NixOS module inclusions)
-  path = self.third_party.nixpkgs.lib.cleanSource ./.;
+  path = self.third_party.nixpkgs.lib.cleanSourceWith {
+    name = "depot";
+    src = ./.;
+    filter = self.third_party.nixpkgs.lib.cleanSourceFilter;
+  };
 
   # List of all buildable targets, for CI purposes.
   #