summary refs log tree commit diff
path: root/pkgs/applications/virtualization/qemu/0.9.0.nix
blob: 439ec34a8c380017724df05a1c03bb37406d1f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
args : with args;
	let localDefs = builderDefs {
		src = /* put a fetchurl here */
		fetchurl {
			url = http://fabrice.bellard.free.fr/qemu/qemu-0.9.0.tar.gz;
			sha256 = "1h85njd8xvn472yhcm92rjyzqjr719ab73rxwmz9cm2n6gwsq7s9";
		};

		buildInputs = [ SDL zlib which ];
		configureFlags = [];
	} null; /* null is a terminator for sumArgs */
	in with localDefs;
let 
preConfigure = FullDepEntry ("
  gcc --version
") [minInit];
in
stdenv.mkDerivation rec {
	name = "qemu-"+version;
	builder = writeScript (name + "-builder")
		(textClosure localDefs [ preConfigure doConfigure doMakeInstall doForceShare doPropagate]);
	meta = {
		description = "
		QEmu processor emulator.
";
	};
}