diff options
Diffstat (limited to 'third_party/default.nix')
-rw-r--r-- | third_party/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index e5394752f375..44e96ff7065d 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -63,7 +63,6 @@ let nano nginx nix - notmuch openssh openssl parallel @@ -97,7 +96,13 @@ let in exposed // { callPackage = nixpkgs.lib.callPackageWith exposed; + # Provide the source code of nixpkgs, but do not provide an imported # version of it. nixpkgsSrc = stableSrc; + + # Packages to be overridden + originals = { + inherit (nixpkgs) notmuch; + }; } |