Updating qemu.

svn path=/nixpkgs/trunk/; revision=20458
This commit is contained in:
Lluís Batlle i Rossell 2010-03-06 23:37:01 +00:00
parent 012e7f196e
commit dddd34bc4e
3 changed files with 19 additions and 19 deletions

View File

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

View File

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

View File

@ -7923,7 +7923,7 @@ let
inherit fetchurl stdenv pkgconfig imagemagick boost python;
};
qemu = import ../applications/virtualization/qemu/0.12.2.nix {
qemu = import ../applications/virtualization/qemu/0.12.3.nix {
inherit stdenv fetchurl SDL zlib which;
};