diff options
-rw-r--r-- | default.nix | 2 | ||||
-rw-r--r-- | third_party/nixpkgs/default.nix | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/default.nix b/default.nix index 9a73e99d8960..fd02dfbde927 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ # (see //nix/readTree for details) and constructing a matching attribute set # tree. -{ nixpkgsBisectPath ? null, ... }@args: +{ nixpkgsBisectPath ? null, nixpkgsConfig ? {}, ... }@args: let inherit (builtins) diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index 872a7e79e88a..f8831f1fd591 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -57,9 +57,15 @@ let stable = stableHashes.commit; }; }; + in import nixpkgsSrc { - config.allowUnfree = true; - config.allowBroken = true; + # allow users to inject their config into builds (e.g. to test CA derivations) + config = + (if externalArgs ? nixpkgsConfig then externalArgs.nixpkgsConfig else { }) + // { + allowUnfree = true; + allowBroken = true; + }; overlays = [ commitsOverlay stableOverlay |