5984fe2daa
svn path=/nixpkgs/trunk/; revision=20348
34 lines
1.3 KiB
Nix
34 lines
1.3 KiB
Nix
{ stdenv, fetchurl, lib, cmake, perl, python, sip, pyqt4, zlib, libpng, freetype, fontconfig, qt4, boost
|
|
, kdelibs, kdepimlibs, automoc4, phonon, soprano, akonadi, qimageblitz, attica, polkit_qt
|
|
}:
|
|
|
|
# This function will only build the pykde4 module. I don't need the other bindings and
|
|
# some bindings are even broken.
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdebindings-4.4.1";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.4.1/src/kdebindings-4.4.1.tar.bz2;
|
|
sha256 = "1gx96nyjj050r5cr1azgshav9bmj58i4ihxlv8ma8k6vfrdrx3c1";
|
|
};
|
|
#builder = ./builder.sh;
|
|
|
|
# Disable smoke because I don't need it and gives us an error
|
|
cmakeFlags = [ "-DENABLE_SMOKE=OFF" ];
|
|
preConfigure = ''
|
|
cmakeFlags="$cmakeFlags -DPYTHON_SITE_PACKAGES_DIR=$out/lib/${python.libPrefix}/site-packages"
|
|
cmakeFlags="$cmakeFlags -DSIP_DEFAULT_SIP_DIR=$out/share/sip"
|
|
'';
|
|
|
|
# Okular seems also an optional depenedency which I left out
|
|
buildInputs = [ cmake perl python sip pyqt4 zlib libpng freetype fontconfig qt4 boost
|
|
kdelibs kdepimlibs automoc4 phonon soprano akonadi qimageblitz attica polkit_qt ];
|
|
meta = {
|
|
description = "KDE bindings";
|
|
longDescription = "Provides KDE bindings for several languages such as Java, Smoke and Python";
|
|
license = "LGPL";
|
|
homepage = http://www.kde.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|