nixpkgs/pkgs/applications/virtualization/qboot/default.nix

32 lines
795 B
Nix
Raw Permalink Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, meson, ninja, fetchFromGitHub, nixosTests }:
2015-07-09 09:11:18 +00:00
stdenv.mkDerivation {
2020-05-22 02:28:38 +00:00
name = "qboot-20200423";
2015-07-09 09:11:18 +00:00
src = fetchFromGitHub {
owner = "bonzini";
repo = "qboot";
2020-05-22 02:28:38 +00:00
rev = "de50b5931c08f5fba7039ddccfb249a5b3b0b18d";
sha256 = "1d0h29zz535m0pq18k3aya93q7lqm2858mlcp8mlfkbq54n8c5d8";
2015-07-09 09:11:18 +00:00
};
2020-05-22 02:28:38 +00:00
nativeBuildInputs = [ meson ninja ];
2015-07-09 09:11:18 +00:00
installPhase = ''
mkdir -p $out
2020-05-22 02:28:38 +00:00
cp bios.bin bios.bin.elf $out/.
'';
hardeningDisable = [ "stackprotector" "pic" ];
2015-07-09 09:11:18 +00:00
passthru.tests = { qboot = nixosTests.qboot; };
2015-07-09 09:11:18 +00:00
meta = {
description = "A simple x86 firmware for booting Linux";
homepage = "https://github.com/bonzini/qboot";
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ tstrobel ];
2015-07-09 09:11:18 +00:00
platforms = ["x86_64-linux" "i686-linux"];
};
}