2009-02-13 11:42:59 +01:00
|
|
|
pkgs:
|
2009-02-12 17:26:32 +01:00
|
|
|
|
|
|
|
rec {
|
|
|
|
### SUPPORT
|
|
|
|
automoc4 = import ./support/automoc4 {
|
2009-02-13 11:42:59 +01:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
|
|
inherit (pkgs) qt4;
|
2009-02-12 17:26:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
phonon = import ./support/phonon {
|
2009-02-13 11:42:59 +01:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
|
|
inherit (pkgs) qt4 pthread_stubs gst_all xineLib;
|
|
|
|
inherit (pkgs.xlibs) libXau libXdmcp;
|
2009-02-12 17:26:32 +01:00
|
|
|
inherit automoc4;
|
|
|
|
};
|
|
|
|
|
|
|
|
strigi = import ./support/strigi {
|
2009-02-13 11:42:59 +01:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake perl;
|
|
|
|
inherit (pkgs) bzip2 qt4 libxml2 exiv2 fam log4cxx cluceneCore;
|
2009-02-12 17:26:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
soprano = import ./support/soprano {
|
2009-02-13 11:42:59 +01:00
|
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
|
|
inherit (pkgs) qt4 jdk cluceneCore redland;
|
2009-02-12 17:26:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
### LIBS
|
2009-02-13 11:42:59 +01:00
|
|
|
kdelibs = import ./libs (pkgs // {
|
|
|
|
inherit automoc4 phonon strigi soprano;
|
|
|
|
});
|
2009-02-12 17:26:32 +01:00
|
|
|
}
|