2007-11-05 09:32:20 +01:00
|
|
|
args : with args;
|
|
|
|
rec
|
|
|
|
{
|
2007-11-26 14:24:56 +01:00
|
|
|
selectVersion = dir: import (dir + "/${args.version}.nix");
|
|
|
|
bcop = selectVersion ./bcop args;
|
|
|
|
libcompizconfig = selectVersion ./libcompizconfig (args // {inherit bcop;});
|
|
|
|
configBackendGConf = selectVersion ./config-backend (args // {inherit bcop libcompizconfig;});
|
|
|
|
compizConfigPython = selectVersion ./compizconfig-python (args // {inherit libcompizconfig
|
2007-11-05 17:07:35 +01:00
|
|
|
bcop pyrex configBackendGConf;});
|
2007-11-26 14:24:56 +01:00
|
|
|
ccsm = selectVersion ./ccsm (args // {inherit libcompizconfig bcop compizConfigPython configBackendGConf;});
|
|
|
|
pluginsMain = selectVersion ./main (args //{inherit bcop ;});
|
|
|
|
pluginsExtra = selectVersion ./extra (args //{inherit bcop pluginsMain;});
|
2008-12-15 13:10:42 +01:00
|
|
|
compizManager = (import ./compiz-manager/0.6.0.nix) (args // {inherit bcop ccsm;});
|
2008-04-11 11:25:58 +02:00
|
|
|
ccsmSimple = selectVersion ./ccsm-simple (args // {inherit libcompizconfig bcop compizConfigPython configBackendGConf;});
|
2007-11-05 09:32:20 +01:00
|
|
|
}
|