We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21102c0 commit 9601183Copy full SHA for 9601183
pkgs/by-name/li/limine/package.nix
@@ -55,9 +55,9 @@ let
55
];
56
in
57
58
-assert lib.assertMsg (!(biosSupport && !hasI686)) "BIOS builds are possible only for x86";
+assert lib.assertMsg (!biosSupport || hasI686) "BIOS builds are possible only for x86";
59
60
-assert lib.assertMsg (!(pxeSupport && !hasI686)) "PXE builds are possible only for x86";
+assert lib.assertMsg (!pxeSupport || hasI686) "PXE builds are possible only for x86";
61
62
# The output of the derivation is a tool to create bootable images using Limine
63
# as bootloader for various platforms and corresponding binary and helper files.
0 commit comments