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

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

  src = fetchurl {
    url = "http://download.savannah.gnu.org/releases/qemu/${name}.tar.gz";
    sha256 = "0xyqbwy78218ja6r9ya5p37j8hcd81l4cpw3ghvnxsjwn18mhvqy";
  };
  
  buildInputs = [SDL zlib which];
  
  meta = {
    description = "QEmu processor emulator";
    license = "GPLv2+";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}