Ignore kernel configuration errors

Fixes #113

See https://github.com/NixOS/nixpkgs/pull/366004
This commit is contained in:
Jamie Magee 2025-01-29 20:39:50 -08:00
parent 628e512d60
commit 2511824848

View file

@ -63,6 +63,7 @@ let
features.efiBootStub = false; features.efiBootStub = false;
kernelPatches = kernelPatches =
if kernel ? "patches" then kernel.patches else [ ]; if kernel ? "patches" then kernel.patches else [ ];
ignoreConfigErrors = true;
}).overrideAttrs }).overrideAttrs
(oldAttrs: { (oldAttrs: {
postConfigure = '' postConfigure = ''