about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/virtualization/qboot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/virtualization/qboot/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/virtualization/qboot/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/virtualization/qboot/default.nix b/nixpkgs/pkgs/applications/virtualization/qboot/default.nix
new file mode 100644
index 000000000000..d770308239f8
--- /dev/null
+++ b/nixpkgs/pkgs/applications/virtualization/qboot/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation {
+  name = "qboot-20170330";
+
+  src = fetchFromGitHub {
+    owner = "bonzini";
+    repo = "qboot";
+    rev = "ac9488f26528394856b94bda0797f5bd9c69a26a";
+    sha256 = "0l83nbjndin1cbcimkqkiqr5df8d76cnhyk26rd3aygb2bf7cspy";
+  };
+
+  installPhase = ''
+    mkdir -p $out
+    cp bios.bin* $out/.
+  '';
+
+  hardeningDisable = [ "stackprotector" "pic" ];
+
+  meta = {
+    description = "A simple x86 firmware for booting Linux";
+    homepage = "https://github.com/bonzini/qboot";
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = with stdenv.lib.maintainers; [ tstrobel ];
+    platforms = ["x86_64-linux" "i686-linux"];
+  };
+}