7b1c9a7a82
svn path=/nixpkgs/trunk/; revision=9577
23 lines
689 B
Nix
23 lines
689 B
Nix
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) ++
|
|
[libcompizconfig bcop];
|
|
configureFlags = [];
|
|
} null; /* null is a terminator for sumArgs */
|
|
with stringsWithDeps;
|
|
stdenv.mkDerivation rec {
|
|
name = "compizconfig-backend-GConf-"+version;
|
|
builder = writeScript (name + "-builder")
|
|
(textClosure [doAutotools doConfigure doMakeInstall doForceShare]);
|
|
meta = {
|
|
description = "
|
|
Compiz configuration backend (GConf).
|
|
";
|
|
};
|
|
}
|