nixpkgs/pkgs/applications/virtualization/OVMF/default.nix
Shea Levy 6cf8e4f815 EDK2: Significant cleanup and
modularization, and add OVMF as an example of how to use it

svn path=/nixpkgs/trunk/; revision=33059
2012-03-14 06:57:58 +00:00

20 lines
483 B
Nix

{ stdenv, edk2 }:
stdenv.mkDerivation (edk2.setup "OvmfPkg/OvmfPkgX64.dsc" {
name = "OVMF-2012-03-13";
src = edk2.src;
patchPhase = ''
rm -fR Conf BaseTools EdkCompatibilityPkg
'';
meta = {
description = "Sample UEFI firmware for QEMU and KVM";
homepage = http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=OVMF;
license = "BSD";
maintainers = [ stdenv.lib.maintainers.shlevy ];
platforms = ["x86_64-linux" "i686-linux"];
};
})