ea891200d8
svn path=/nixpkgs/trunk/; revision=22892
70 lines
2 KiB
Nix
70 lines
2 KiB
Nix
pkgs:
|
|
|
|
pkgs.recurseIntoAttrs (rec {
|
|
|
|
### SUPPORT
|
|
akonadi = import ./support/akonadi {
|
|
inherit (pkgs) stdenv fetchurl cmake qt4 shared_mime_info libxslt boost
|
|
mysql;
|
|
inherit automoc4 soprano;
|
|
};
|
|
|
|
attica = import ./support/attica {
|
|
inherit (pkgs) stdenv fetchurl cmake qt4;
|
|
};
|
|
|
|
automoc4 = import ./support/automoc4 {
|
|
inherit (pkgs) stdenv fetchurl cmake qt4;
|
|
};
|
|
|
|
oxygen_icons = import ./support/oxygen-icons {
|
|
inherit (pkgs) stdenv fetchurl cmake;
|
|
};
|
|
|
|
# phonon = import ./support/phonon {
|
|
# inherit (pkgs) stdenv fetchurl cmake pkgconfig qt4 xineLib pulseaudio;
|
|
# inherit (pkgs.gst_all) gstreamer gstPluginsBase;
|
|
# inherit (pkgs.xlibs) libXau libXdmcp libpthreadstubs;
|
|
# inherit automoc4;
|
|
# };
|
|
#
|
|
polkit_qt_1 = import ./support/polkit-qt-1 {
|
|
inherit (pkgs) stdenv fetchurl cmake pkgconfig qt4 glib polkit;
|
|
inherit automoc4;
|
|
};
|
|
|
|
strigi = import ./support/strigi {
|
|
inherit (pkgs) stdenv fetchurl lib cmake perl;
|
|
inherit (pkgs) bzip2 qt4 libxml2 expat exiv2 cluceneCore;
|
|
};
|
|
|
|
soprano = import ./support/soprano {
|
|
inherit (pkgs) stdenv fetchurl cmake cluceneCore redland libiodbc qt4;
|
|
};
|
|
|
|
qca2 = import ./support/qca2 {
|
|
inherit (pkgs) stdenv fetchurl which qt4;
|
|
};
|
|
|
|
qca2_ossl = import ./support/qca2/ossl.nix {
|
|
inherit (pkgs) stdenv fetchurl qt4 openssl;
|
|
inherit qca2;
|
|
};
|
|
|
|
### LIBS
|
|
kdelibs = import ./libs {
|
|
inherit (pkgs) stdenv fetchurl cmake qt4 perl bzip2 pcre fam libxml2 libxslt;
|
|
inherit (pkgs) xz flex bison giflib jasper openexr aspell avahi shared_mime_info
|
|
kerberos acl attr shared_desktop_ontologies enchant libdbusmenu_qt;
|
|
inherit (pkgs) docbook_xsl docbook_xml_dtd_42;
|
|
inherit (pkgs.xlibs) libXScrnSaver;
|
|
inherit automoc4 strigi soprano qca2 attica polkit_qt_1;
|
|
};
|
|
|
|
kdepimlibs = import ./pimlibs {
|
|
inherit (pkgs) stdenv fetchurl cmake qt4 perl boost cyrus_sasl gpgme libical
|
|
openldap shared_mime_info;
|
|
inherit kdelibs automoc4 akonadi soprano;
|
|
};
|
|
})
|