2007-11-05 09:32:20 +01:00
|
|
|
args : with args;
|
|
|
|
rec
|
|
|
|
{
|
2007-12-08 02:09:00 +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-12-08 02:09:00 +01:00
|
|
|
ccsm = selectVersion ./ccsm (args // {inherit libcompizconfig bcop compizConfigPython configBackendGConf;});
|
|
|
|
pluginsMain = selectVersion ./main (args //{inherit bcop ;});
|
|
|
|
pluginsExtra = selectVersion ./extra (args //{inherit bcop pluginsMain;});
|
|
|
|
compizManager = selectVersion ./compiz-manager (args // {inherit bcop ccsm;});
|
2007-11-05 09:32:20 +01:00
|
|
|
}
|