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