Some fixes to CompizFusion. With proper ~-setup works now.
svn path=/nixpkgs/trunk/; revision=9585
This commit is contained in:
parent
623437eaa2
commit
3ef5e62b2f
pkgs
applications/window-managers/compiz-fusion
top-level
|
@ -6,7 +6,7 @@ args : with args;
|
||||||
sha256 = "0im67mxnm30a3xd3rvfwrgfp4ic2x5axpjdahx0f5p9pnfy0jm4n";
|
sha256 = "0im67mxnm30a3xd3rvfwrgfp4ic2x5axpjdahx0f5p9pnfy0jm4n";
|
||||||
};
|
};
|
||||||
buildInputs = (import ../general-dependencies.nix args) ++
|
buildInputs = (import ../general-dependencies.nix args) ++
|
||||||
[libcompizconfig bcop python pyrex];
|
[libcompizconfig bcop python pyrex configBackendGConf];
|
||||||
configureFlags = [];
|
configureFlags = [];
|
||||||
} null; /* null is a terminator for sumArgs */
|
} null; /* null is a terminator for sumArgs */
|
||||||
with stringsWithDeps;
|
with stringsWithDeps;
|
||||||
|
|
|
@ -6,14 +6,15 @@ args : with args;
|
||||||
sha256 = "0h0r9sicc4pla5vag0j5qkllyagbs8dv5ai7fga48ln7q35y2mjr";
|
sha256 = "0h0r9sicc4pla5vag0j5qkllyagbs8dv5ai7fga48ln7q35y2mjr";
|
||||||
};
|
};
|
||||||
buildInputs = (import ../general-dependencies.nix args) ++
|
buildInputs = (import ../general-dependencies.nix args) ++
|
||||||
[libcompizconfig bcop];
|
[bcop libcompizconfig];
|
||||||
configureFlags = [];
|
configureFlags = [];
|
||||||
|
forceShare = ["man" "doc" "info" "lib/compizconfig"];
|
||||||
} null; /* null is a terminator for sumArgs */
|
} null; /* null is a terminator for sumArgs */
|
||||||
with stringsWithDeps;
|
with stringsWithDeps;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "compizconfig-backend-GConf-"+version;
|
name = "compizconfig-backend-GConf-"+version;
|
||||||
builder = writeScript (name + "-builder")
|
builder = writeScript (name + "-builder")
|
||||||
(textClosure [doAutotools doConfigure doMakeInstall doForceShare]);
|
(textClosure [doAutotools doConfigure doMakeInstall doForceShare doPropagate]);
|
||||||
meta = {
|
meta = {
|
||||||
description = "
|
description = "
|
||||||
Compiz configuration backend (GConf).
|
Compiz configuration backend (GConf).
|
||||||
|
|
|
@ -3,9 +3,9 @@ rec
|
||||||
{
|
{
|
||||||
bcop = import ./bcop args;
|
bcop = import ./bcop args;
|
||||||
libcompizconfig = import ./libcompizconfig (args // {inherit bcop;});
|
libcompizconfig = import ./libcompizconfig (args // {inherit bcop;});
|
||||||
configBackendGConf = import ./config-backend (args // {inherit libcompizconfig bcop;});
|
configBackendGConf = import ./config-backend (args // {inherit bcop libcompizconfig;});
|
||||||
compizConfigPython = import ./compizconfig-python (args // {inherit libcompizconfig
|
compizConfigPython = import ./compizconfig-python (args // {inherit libcompizconfig
|
||||||
bcop pyrex;});
|
bcop pyrex configBackendGConf;});
|
||||||
ccsm = import ./ccsm (args // {inherit libcompizconfig bcop compizConfigPython configBackendGConf;});
|
ccsm = import ./ccsm (args // {inherit libcompizconfig bcop compizConfigPython configBackendGConf;});
|
||||||
pluginsMain = import ./main (args //{inherit bcop ;});
|
pluginsMain = import ./main (args //{inherit bcop ;});
|
||||||
compizManager = import ./compiz-manager (args // {inherit bcop ccsm;});
|
compizManager = import ./compiz-manager (args // {inherit bcop ccsm;});
|
||||||
|
|
|
@ -9,7 +9,7 @@ args : with args;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${abort "Specify name"}";
|
name = "${abort "Specify name"}";
|
||||||
builder = writeScript (name + "-builder")
|
builder = writeScript (name + "-builder")
|
||||||
(textClosure [(abort "Specify phases - defined here or in builderDefs")]);
|
(textClosure [(abort "Specify phases - defined here or in builderDefs") doForceShare doPropagate]);
|
||||||
meta = {
|
meta = {
|
||||||
description = "
|
description = "
|
||||||
${abort "Write a description"}
|
${abort "Write a description"}
|
||||||
|
|
Loading…
Reference in New Issue