From a83059a9b30036e65fdd7ef8ef5ebde6cb1acf3a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 25 Mar 2021 13:53:00 -0400 Subject: [PATCH] Point at the locally available <nixpkgs> instead of the upstream location --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 26aaad60..0c9c12f9 100644 --- a/shell.nix +++ b/shell.nix @@ -15,7 +15,7 @@ let morph = pkgs.callPackage (morph-src + "/nix-packaging") { }; in pkgs.mkShell { - NIX_PATH = "nixpkgs=${nixpkgs-pin.url}"; + NIX_PATH = "nixpkgs=${nixpkgs.path}"; buildInputs = [ morph ]; -- GitLab