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:
parent
5fae957741
commit
4f906f38a8
18
pkgs/applications/virtualization/qemu/0.11.0.nix
Normal file
18
pkgs/applications/virtualization/qemu/0.11.0.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -7468,9 +7468,8 @@ let
|
|||||||
inherit fetchurl stdenv pkgconfig imagemagick boost python;
|
inherit fetchurl stdenv pkgconfig imagemagick boost python;
|
||||||
};
|
};
|
||||||
|
|
||||||
qemu = import ../applications/virtualization/qemu/0.10.3.nix {
|
qemu = import ../applications/virtualization/qemu/0.11.0.nix {
|
||||||
inherit fetchurl SDL zlib which;
|
inherit stdenv fetchurl SDL zlib which;
|
||||||
stdenv = overrideGCC stdenv gcc34;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
qemuSVN = import ../applications/virtualization/qemu/svn-6642.nix {
|
qemuSVN = import ../applications/virtualization/qemu/svn-6642.nix {
|
||||||
|
Loading…
Reference in New Issue
Block a user