2007-11-05 09:32:20 +01:00
|
|
|
args : with args;
|
2008-01-18 13:36:56 +01:00
|
|
|
let localDefs = builderDefs {
|
2007-11-05 09:32:20 +01:00
|
|
|
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) ++
|
2007-11-05 17:07:35 +01:00
|
|
|
[bcop libcompizconfig];
|
2007-11-05 09:32:20 +01:00
|
|
|
configureFlags = [];
|
2007-11-05 17:07:35 +01:00
|
|
|
forceShare = ["man" "doc" "info" "lib/compizconfig"];
|
2007-11-05 09:32:20 +01:00
|
|
|
} null; /* null is a terminator for sumArgs */
|
2008-01-18 13:36:56 +01:00
|
|
|
in with localDefs;
|
2007-11-05 09:32:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "compizconfig-backend-GConf-"+version;
|
|
|
|
builder = writeScript (name + "-builder")
|
2008-01-18 13:36:56 +01:00
|
|
|
(textClosure localDefs [doAutotools doConfigure doMakeInstall doForceShare doPropagate]);
|
2007-11-05 09:32:20 +01:00
|
|
|
meta = {
|
|
|
|
description = "
|
|
|
|
Compiz configuration backend (GConf).
|
|
|
|
";
|
2008-03-02 19:49:31 +01:00
|
|
|
inherit src;
|
2007-11-05 09:32:20 +01:00
|
|
|
};
|
|
|
|
}
|