nixpkgs/pkgs/desktops/kde-4.2/bindings/default.nix
Lluís Batlle i Rossell abed7b8441 Made kde-4.2 packages work, adding the proper derivation attribute to get all qt include
paths into NIX_CFLAGS_COMPILE. This helps build kde42 packages, because they have a broken
FindQt4.cmake, which doesn't find properly the qt4 header files.

svn path=/nixpkgs/trunk/; revision=15841
2009-06-03 17:33:54 +00:00

18 lines
707 B
Nix

{stdenv, fetchurl, python, sip, pyqt4, zlib, libpng, freetype, fontconfig, qt4,
libSM, libXrender, libXrandr, libXfixes, libXinerama, libXcursor, libXext, kdelibs}:
# 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.2.3";
src = fetchurl {
url = mirror://kde/stable/4.2.3/src/kdebindings-4.2.3.tar.bz2;
sha1 = "d8e5ddf5e993124e0250c3e9a9de52264ca5ca7c";
};
builder = ./builder.sh;
includeAllQtDirs=true;
buildInputs = [ python sip pyqt4 zlib libpng freetype fontconfig qt4
libSM libXrender libXrandr libXfixes libXcursor libXinerama libXext kdelibs ];
}