nix: build with default stdenv

This was required for Nix v2.2.2 which did not build with
libcxx 7. This is no longer required for any current version of Nix.
This commit is contained in:
Andrew Childs 2020-10-15 16:03:04 +09:00
parent 2a4607f442
commit 85e0d375cf
1 changed files with 0 additions and 3 deletions

View File

@ -3,7 +3,6 @@
, stateDir ? "/nix/var" , stateDir ? "/nix/var"
, confDir ? "/etc" , confDir ? "/etc"
, boehmgc , boehmgc
, stdenv, llvmPackages_6
}: }:
let let
@ -190,8 +189,6 @@ in rec {
}; };
inherit storeDir stateDir confDir boehmgc; inherit storeDir stateDir confDir boehmgc;
} // stdenv.lib.optionalAttrs stdenv.cc.isClang {
stdenv = llvmPackages_6.stdenv;
}); });
nixUnstable = lib.lowPrio (callPackage common rec { nixUnstable = lib.lowPrio (callPackage common rec {