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

28 lines
673 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-07-09 09:11:18 +00:00
stdenv.mkDerivation {
name = "qboot-20170330";
2015-07-09 09:11:18 +00:00
src = fetchFromGitHub {
owner = "bonzini";
repo = "qboot";
rev = "ac9488f26528394856b94bda0797f5bd9c69a26a";
sha256 = "0l83nbjndin1cbcimkqkiqr5df8d76cnhyk26rd3aygb2bf7cspy";
2015-07-09 09:11:18 +00:00
};
installPhase = ''
mkdir -p $out
cp bios.bin* $out/.
'';
hardeningDisable = [ "stackprotector" "pic" ];
2015-07-09 09:11:18 +00:00
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"];
};
}