Updating qemu to 0.11.0, and making it use stdenv with the usual gcc, and not an older.

svn path=/nixpkgs/trunk/; revision=18305
This commit is contained in:
Lluís Batlle i Rossell 2009-11-09 09:15:58 +00:00
parent 5fae957741
commit 4f906f38a8
2 changed files with 20 additions and 3 deletions

View File

@ -0,0 +1,18 @@
{stdenv, fetchurl, SDL, zlib, which}:
stdenv.mkDerivation {
name = "qemu-0.11.0";
src = fetchurl {
url = http://download.savannah.gnu.org/releases/qemu/qemu-0.11.0.tar.gz;
sha256 = "1w3n61lzwvqg1ygn0vs8syybbmbcbk7lfyya098k201lp5rpwamw";
};
patchFlags = "-p2";
buildInputs = [SDL zlib which];
meta = {
description = "QEmu processor emulator";
};
}

View File

@ -7468,9 +7468,8 @@ let
inherit fetchurl stdenv pkgconfig imagemagick boost python;
};
qemu = import ../applications/virtualization/qemu/0.10.3.nix {
inherit fetchurl SDL zlib which;
stdenv = overrideGCC stdenv gcc34;
qemu = import ../applications/virtualization/qemu/0.11.0.nix {
inherit stdenv fetchurl SDL zlib which;
};
qemuSVN = import ../applications/virtualization/qemu/svn-6642.nix {