summary refs log tree commit diff
path: root/pkgs/applications/window-managers/compiz-fusion/compizconfig-python/0.6.0.nix
blob: 73f1c653361c079be5968fd9927b30ad965860f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
args : with args;
	with builderDefs {
		src = /* put a fetchurl here */
	fetchurl {
		url = http://releases.compiz-fusion.org/0.6.0.1/compizconfig-python-0.6.0.1.tar.bz2;
		sha256 = "0im67mxnm30a3xd3rvfwrgfp4ic2x5axpjdahx0f5p9pnfy0jm4n";
	};
		buildInputs = (import ../general-dependencies.nix args) ++
			[libcompizconfig bcop python pyrex configBackendGConf];
		configureFlags = [];
	} null; /* null is a terminator for sumArgs */
stdenv.mkDerivation rec {
	name = "compizconfig-python-"+args.version;
	builder = writeScript (name + "-builder")
		(textClosure [doAutotools doConfigure doMakeInstall doForceShare]);
	meta = {
		description = "
	Compiz configuration - Python part.
";
	};
}