2009-02-13 10:42:59 +00:00
|
|
|
pkgs:
|
2009-02-12 16:26:32 +00:00
|
|
|
|
|
|
|
rec {
|
|
|
|
### SUPPORT
|
|
|
|
automoc4 = import ./support/automoc4 {
|
2009-02-13 10:42:59 +00:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
|
|
inherit (pkgs) qt4;
|
2009-02-12 16:26:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
phonon = import ./support/phonon {
|
2009-02-13 10:42:59 +00:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
|
|
inherit (pkgs) qt4 pthread_stubs gst_all xineLib;
|
|
|
|
inherit (pkgs.xlibs) libXau libXdmcp;
|
2009-02-12 16:26:32 +00:00
|
|
|
inherit automoc4;
|
|
|
|
};
|
|
|
|
|
|
|
|
strigi = import ./support/strigi {
|
2009-02-13 10:42:59 +00:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake perl;
|
|
|
|
inherit (pkgs) bzip2 qt4 libxml2 exiv2 fam log4cxx cluceneCore;
|
2009-02-12 16:26:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
soprano = import ./support/soprano {
|
2009-02-13 10:42:59 +00:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
|
|
inherit (pkgs) qt4 jdk cluceneCore redland;
|
2009-02-12 16:26:32 +00:00
|
|
|
};
|
|
|
|
|
2009-02-16 11:05:38 +00:00
|
|
|
qimageblitz = import ./support/qimageblitz {
|
|
|
|
inherit (pkgs) stdenv fetchurl cmake qt4;
|
|
|
|
};
|
|
|
|
|
2009-02-12 16:26:32 +00:00
|
|
|
### LIBS
|
2009-02-13 10:42:59 +00:00
|
|
|
kdelibs = import ./libs (pkgs // {
|
|
|
|
inherit automoc4 phonon strigi soprano;
|
|
|
|
});
|
2009-02-16 11:05:38 +00:00
|
|
|
|
|
|
|
kdebase_workspace = import ./base-workspace {
|
|
|
|
inherit (pkgs) stdenv fetchurl cmake qt4 perl python;
|
|
|
|
inherit (pkgs) lm_sensors libxklavier libusb pthread_stubs;
|
|
|
|
inherit (pkgs.xlibs) libXi libXau libXdmcp libXtst libXcomposite libXdamage;
|
|
|
|
inherit kdelibs;
|
|
|
|
inherit automoc4 phonon strigi soprano qimageblitz;
|
|
|
|
};
|
|
|
|
|
|
|
|
kdebase = import ./base {
|
|
|
|
inherit (pkgs) stdenv fetchurl cmake perl qt4 pciutils libraw1394;
|
|
|
|
inherit kdelibs;
|
|
|
|
inherit automoc4 phonon strigi qimageblitz soprano;
|
|
|
|
};
|
|
|
|
|
|
|
|
kdebase_runtime = import ./base-runtime {
|
|
|
|
inherit (pkgs) stdenv fetchurl cmake perl bzip2 qt4;
|
|
|
|
inherit (pkgs) xineLib alsaLib samba cluceneCore;
|
|
|
|
inherit kdelibs;
|
|
|
|
inherit automoc4 phonon strigi soprano;
|
|
|
|
};
|
2009-02-12 16:26:32 +00:00
|
|
|
}
|