diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 7ccd7413dbd9..9a73e99d8960 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. # |