about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-06-08 10:46:11 +0200
committerGitHub <noreply@github.com>2020-06-08 10:46:11 +0200
commit3590f02e7d5760e52072c1a729ee2250b5560746 (patch)
tree19730222e1ab069eaca99f1723c4564731d762f1 /pkgs
parent657f4927ebcde600377a8ef3d7722bc701548e32 (diff)
parent55912f3535217910b12e81f07fb10d70511a471b (diff)
downloadnixlib-3590f02e7d5760e52072c1a729ee2250b5560746.tar
nixlib-3590f02e7d5760e52072c1a729ee2250b5560746.tar.gz
nixlib-3590f02e7d5760e52072c1a729ee2250b5560746.tar.bz2
nixlib-3590f02e7d5760e52072c1a729ee2250b5560746.tar.lz
nixlib-3590f02e7d5760e52072c1a729ee2250b5560746.tar.xz
nixlib-3590f02e7d5760e52072c1a729ee2250b5560746.tar.zst
nixlib-3590f02e7d5760e52072c1a729ee2250b5560746.zip
Merge pull request #88574 from JJJollyjim/qemu-vm-qboot-opt
nixos/qemu-vm: add option to use qboot
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/virtualization/qboot/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/virtualization/qboot/default.nix b/pkgs/applications/virtualization/qboot/default.nix
index 800d601c76e6..8d1f9dac2e51 100644
--- a/pkgs/applications/virtualization/qboot/default.nix
+++ b/pkgs/applications/virtualization/qboot/default.nix
@@ -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";