mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Fix arguments reference
svn path=/nixpkgs/trunk/; revision=19416
This commit is contained in:
parent
54322bbd02
commit
3e33e35b4d
1 changed files with 3 additions and 3 deletions
|
@ -34,14 +34,14 @@ import ../kernel/generic.nix (
|
|||
zen = true;
|
||||
fbConDecor = true;
|
||||
aufs = true;
|
||||
} // args.features;
|
||||
} // (stdenv.lib.attrByPath ["features"] {} args);
|
||||
|
||||
config = with conf;
|
||||
''
|
||||
${generalOptions}
|
||||
${noDebug}
|
||||
${virtualisation}
|
||||
${if stdenv.lib.attrByPath ["oldI686"] false args.features then noPAE else ""}
|
||||
${if stdenv.lib.attrByPath ["features" "oldI686"] false args then noPAE else ""}
|
||||
${usefulSubsystems}
|
||||
${cfq}
|
||||
${noNUMA}
|
||||
|
@ -56,7 +56,7 @@ import ../kernel/generic.nix (
|
|||
${blockDevices}
|
||||
${bluetooth}
|
||||
${misc}
|
||||
${if stdenv.lib.attrByPath ["ckSched"] false args.features then bfsched else ""}
|
||||
${if stdenv.lib.attrByPath ["features" "ckSched"] false args then bfsched else ""}
|
||||
'';
|
||||
|
||||
preConfigure = ''
|
||||
|
|
Loading…
Reference in a new issue