2021-08-08 11:59:48 +01:00
|
|
|
{ lib, stdenv, fetchurl, acpica-tools, python3 }:
|
2015-01-26 20:13:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "seabios";
|
2020-10-14 10:09:21 +01:00
|
|
|
version = "1.14.0";
|
2015-01-26 20:13:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-07 19:11:38 +01:00
|
|
|
url = "https://www.seabios.org/downloads/${pname}-${version}.tar.gz";
|
2020-10-14 10:09:21 +01:00
|
|
|
sha256 = "1zc1brgafbbf5hmdr1qc1p859cabpz73l8sklq83xa4sn9icqw7b";
|
2015-01-26 20:13:31 +00:00
|
|
|
};
|
|
|
|
|
2021-03-25 09:16:52 +00:00
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
|
2021-08-08 11:59:48 +01:00
|
|
|
buildInputs = [ acpica-tools ];
|
2021-03-25 09:16:52 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
2015-01-26 20:13:31 +00:00
|
|
|
|
2016-08-02 16:38:25 +01:00
|
|
|
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
|
2016-02-10 22:28:44 +00:00
|
|
|
|
2015-01-26 20:13:31 +00:00
|
|
|
configurePhase = ''
|
|
|
|
# build SeaBIOS for CSM
|
|
|
|
cat > .config << EOF
|
|
|
|
CONFIG_CSM=y
|
|
|
|
CONFIG_QEMU_HARDWARE=y
|
|
|
|
CONFIG_PERMIT_UNALIGNED_PCIROM=y
|
|
|
|
EOF
|
|
|
|
|
|
|
|
make olddefconfig
|
2016-02-10 22:28:44 +00:00
|
|
|
'';
|
2015-01-26 20:13:31 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp out/Csm16.bin $out/Csm16.bin
|
2016-02-10 22:28:44 +00:00
|
|
|
'';
|
2015-01-26 20:13:31 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-26 20:13:31 +00:00
|
|
|
description = "Open source implementation of a 16bit X86 BIOS";
|
|
|
|
longDescription = ''
|
|
|
|
SeaBIOS is an open source implementation of a 16bit X86 BIOS.
|
|
|
|
It can run in an emulator or it can run natively on X86 hardware with the use of coreboot.
|
|
|
|
SeaBIOS is the default BIOS for QEMU and KVM.
|
|
|
|
'';
|
2020-04-07 19:11:38 +01:00
|
|
|
homepage = "http://www.seabios.org";
|
2015-01-26 20:13:31 +00:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = [ maintainers.tstrobel ];
|
2017-09-13 13:18:15 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2015-01-26 20:13:31 +00:00
|
|
|
};
|
|
|
|
}
|