Merge pull request #88574 from JJJollyjim/qemu-vm-qboot-opt

nixos/qemu-vm: add option to use qboot
This commit is contained in:
Florian Klink
2020-06-08 10:46:11 +02:00
committed by GitHub
4 changed files with 32 additions and 1 deletions
@@ -1,4 +1,4 @@
{ stdenv, meson, ninja, fetchFromGitHub }:
{ stdenv, meson, ninja, fetchFromGitHub, nixosTests }:
stdenv.mkDerivation {
name = "qboot-20200423";
@@ -19,6 +19,8 @@ stdenv.mkDerivation {
hardeningDisable = [ "stackprotector" "pic" ];
passthru.tests = { qboot = nixosTests.qboot; };
meta = {
description = "A simple x86 firmware for booting Linux";
homepage = "https://github.com/bonzini/qboot";