enable config for items in checkedConfig

don't make me have to write them twice
module-based-network
Daniel Barlow 2022-10-07 00:18:37 +01:00
parent 67c21e51d7
commit 1bd35a1edd
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ let writeConfig = name : config: writeText name
(name: value: (if value == "n" then "# CONFIG_${name} is not set" else "CONFIG_${name}=${value}"))
config
));
kconfigFile = writeConfig "kconfig" config;
kconfigFile = writeConfig "kconfig" (config // checkedConfig);
checkedConfigFile = writeConfig "checked_kconfig" checkedConfig ;
inherit lib; in
stdenv.mkDerivation rec {