mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
7506ae348d
svn path=/nixpkgs/trunk/; revision=20115
18 lines
382 B
Nix
18 lines
382 B
Nix
{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";
|
|
};
|
|
}
|