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