lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

coreboot: make Ada support optional

Ada support keeps breaking due to gnat being in a somewhat poor state
in nixpkgs. As Ada support is only necessary for some Intel drivers
and these are generally not required for using coreboot in a VM, make
Ada support optional.

+3 -1
+3 -1
pkgs/development/tools/misc/coreboot-toolchain/default.nix
··· 9 9 , getopt 10 10 , git 11 11 , gnat11 12 + , gcc 12 13 , lib 13 14 , perl 14 15 , stdenvNoCC 15 16 , zlib 17 + , withAda ? true 16 18 }: 17 19 18 20 stdenvNoCC.mkDerivation rec { ··· 33 35 }; 34 36 35 37 nativeBuildInputs = [ bison curl git perl ]; 36 - buildInputs = [ flex gnat11 zlib ]; 38 + buildInputs = [ flex zlib (if withAda then gnat11 else gcc) ]; 37 39 38 40 enableParallelBuilding = true; 39 41 dontConfigure = true;