EDK2: Significant cleanup and
modularization, and add OVMF as an example of how to use it svn path=/nixpkgs/trunk/; revision=33059
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{ 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"];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user