From fa0a12e35dc947c34a12fa663e446792d824ba44 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Sat, 14 Jan 2017 16:39:03 -0500 Subject: [PATCH] release-cross: Use `nativeDrv` rather than relying on default The default will soon change --- pkgs/top-level/release-cross.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index a2f5903e55d2..ec013816145c 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -24,7 +24,7 @@ let /* Basic list of packages to be natively built, but need a crossSystem defined to get meaning */ basicNativeDrv = { - gdbCross = nativePlatforms; + gdbCross.nativeDrv = nativePlatforms; }; basic = basicCrossDrv // basicNativeDrv;