2014-09-20 11:09:11 +02:00
|
|
|
{ kde, kdelibs, python, sip, pyqt4, kdepimlibs, shared_desktop_ontologies,
|
2014-11-18 02:00:17 +01:00
|
|
|
polkit_qt4, boost, lndir, pkgconfig }:
|
2014-09-20 11:09:11 +02:00
|
|
|
|
|
|
|
let pydir = "lib/python${python.majorVersion}"; in
|
|
|
|
|
|
|
|
kde {
|
|
|
|
|
|
|
|
# todo: polkit isn't found by the build system
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
python kdepimlibs shared_desktop_ontologies
|
2014-11-18 02:00:17 +01:00
|
|
|
boost polkit_qt4
|
2014-09-20 11:09:11 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyqt4 sip ];
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
# Symlink PyQt into PyKDE. This is necessary because PyQt looks
|
|
|
|
# in its PyQt4/uic/widget-plugins directory for plugins, and KDE
|
|
|
|
# needs to install a plugin.
|
|
|
|
mkdir -pv $out/${pydir}
|
|
|
|
${lndir}/bin/lndir ${pyqt4}/${pydir} $out/${pydir}
|
|
|
|
cmakeFlagsArray=( "-DSIP_DEFAULT_SIP_DIR=$prefix/share/sip" )
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python bindings for KDE";
|
|
|
|
};
|
|
|
|
}
|