linuxPackages: build by kernel's stdenv

This commit is contained in:
Vladimír Čunát
2018-02-11 18:55:21 +01:00
parent ae040525d8
commit 169216fe14
2 changed files with 3 additions and 1 deletions
@@ -82,7 +82,8 @@ let
(isModular || (config.isDisabled "FIRMWARE_IN_KERNEL")); (isModular || (config.isDisabled "FIRMWARE_IN_KERNEL"));
in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // { in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // {
passthru = { passthru = {
inherit version modDirVersion config kernelPatches configfile moduleBuildDependencies; inherit version modDirVersion config kernelPatches configfile
moduleBuildDependencies stdenv;
}; };
inherit src; inherit src;
+1
View File
@@ -13052,6 +13052,7 @@ with pkgs;
callPackage = newScope self; callPackage = newScope self;
inherit kernel; inherit kernel;
inherit (kernel) stdenv; # in particular, use the same compiler by default
acpi_call = callPackage ../os-specific/linux/acpi-call {}; acpi_call = callPackage ../os-specific/linux/acpi-call {};