2009-03-09 14:29:37 +01:00
|
|
|
{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.
|
2009-02-25 17:05:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-05-07 13:20:30 +02:00
|
|
|
name = "kdebindings-4.2.3";
|
2009-02-25 17:05:13 +01:00
|
|
|
src = fetchurl {
|
2009-05-07 13:20:30 +02:00
|
|
|
url = mirror://kde/stable/4.2.3/src/kdebindings-4.2.3.tar.bz2;
|
|
|
|
sha1 = "d8e5ddf5e993124e0250c3e9a9de52264ca5ca7c";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
2009-03-02 11:19:20 +01:00
|
|
|
builder = ./builder.sh;
|
2009-03-09 14:29:37 +01:00
|
|
|
buildInputs = [ python sip pyqt4 zlib libpng freetype fontconfig qt4
|
|
|
|
libSM libXrender libXrandr libXfixes libXcursor libXinerama libXext kdelibs ];
|
2009-02-25 17:05:13 +01:00
|
|
|
}
|