about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--release.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/release.nix b/release.nix
index 0fe678dd..df290475 100644
--- a/release.nix
+++ b/release.nix
@@ -4,9 +4,9 @@
 
 let
   system = "x86_64-linux";
-  pkgs = import <nixpkgs> { inherit system; };
+  pkgsUpstream = import <nixpkgs> { inherit system; };
 
-in with pkgs.lib; with builtins; {
+in with pkgsUpstream.lib; with builtins; {
 
   machines = mapAttrsRecursiveCond (m: !(m ? build)) (path: attrs:
     attrs.build.config.system.build.toplevel
@@ -19,9 +19,9 @@ in with pkgs.lib; with builtins; {
   pkgs = let
     releaseLib = import <nixpkgs/pkgs/top-level/release-lib.nix> {
       inherit supportedSystems;
-      packageSet = attrs: import ./pkgs {
+      packageSet = attrs: (import ./pkgs {
         pkgs = import <nixpkgs> attrs;
-      } // { inherit (pkgs) lib; };
+      }) // { inherit (pkgsUpstream) lib; };
     };
   in with releaseLib; mapTestOn (packagePlatforms releaseLib.pkgs);