summary refs log tree commit diff
path: root/pkgs/applications/virtualization/qemu/0.15.nix
blob: f75b212924305b033987798906d3458ec2171431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, python, zlib, pkgconfig, glib, SDL, ncurses }:

stdenv.mkDerivation rec {
  name = "qemu-0.15.1";

  src = fetchurl {
    url = "http://wiki.qemu.org/download/${name}.tar.gz";
    sha256 = "1fmm7l7hm0vsmahp41pgvbl62hh833k802brn6hg8kcfkd6v21bp";
  };

  buildInputs = [ python zlib pkgconfig glib SDL ncurses ];

  meta = {
    description = "QEmu processor emulator";
    license = "GPLv2+";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}