Qemu SVN head..

svn path=/nixpkgs/trunk/; revision=14222
This commit is contained in:
Michael Raskin 2009-02-24 12:22:15 +00:00
parent e8a25c32bc
commit 8f51ff86fd
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, fetchsvn, SDL, zlib, which}:
stdenv.mkDerivation {
name = "qemu-svn-6642";
src = fetchsvn {
url = "svn://svn.sv.gnu.org/qemu/trunk";
rev = "6642";
sha256 = "12445ad91feb72eecd1db0d4319a8fa5d7dc971b89228bd0e121b49c5da9705e";
};
patchFlags = "-p2";
buildInputs = [SDL zlib which];
meta = {
description = "QEmu processor emulator";
};
}

View file

@ -8395,6 +8395,10 @@ let
stdenv = overrideGCC stdenv gcc34;
};
qemuSVN = import ../applications/virtualization/qemu/svn-6642.nix {
inherit fetchsvn SDL zlib which stdenv;
};
qemuImage = composedArgsAndFun
(selectVersion ../applications/virtualization/qemu/linux-img "0.2") {
inherit builderDefs fetchurl stdenv;