3
0
Fork 0
forked from mirrors/nixpkgs

QEMU: Build with ncurses support.

svn path=/nixpkgs/trunk/; revision=27458
This commit is contained in:
Ludovic Courtès 2011-06-14 16:28:17 +00:00
parent 12c9ba62ac
commit 3cf686b4fc

View file

@ -1,15 +1,15 @@
{stdenv, fetchurl, SDL, zlib, which}:
{ stdenv, fetchurl, SDL, zlib, which, ncurses }:
stdenv.mkDerivation rec {
name = "qemu-0.13.0";
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/qemu/${name}.tar.gz";
url = "mirror://savannah/releases/qemu/${name}.tar.gz";
sha256 = "0xyqbwy78218ja6r9ya5p37j8hcd81l4cpw3ghvnxsjwn18mhvqy";
};
buildInputs = [SDL zlib which];
buildInputs = [ SDL zlib which ncurses ];
meta = {
description = "QEmu processor emulator";
license = "GPLv2+";