diff --git a/shell.nix b/shell.nix --- a/shell.nix +++ b/shell.nix @@ -1,11 +1,13 @@ { pkgs ? (import {}) , pythonPackages ? "python27Packages" , doCheck ? true +, sourcesOverrides ? {} , doDevelopInstall ? true }: let - sources = pkgs.config.rc.sources or {}; + # Get sources from config and update them with overrides. + sources = (pkgs.config.rc.sources or {}) // sourcesOverrides; enterprise-ce = import ./default.nix { inherit pkgs pythonPackages doCheck;