summary refs log tree commit diff
path: root/pkgs/development/libraries/kde/kdelibs/default.nix
blob: 546a50fad9bd00ccd3bbcb3b71bc70dfc7c5e466 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, libX11, libXt, libXext, zlib, perl, qt, openssl, pcre,
 pkgconfig, libjpeg, libpng, libtiff, libxml2, libxslt, libtool, expat,
 freetype}:

stdenv.mkDerivation {
  name = "kdelibs-3.4.3";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.tiscali.nl/pub/mirrors/kde/stable/3.4.3/src/kdelibs-3.4.3.tar.bz2;
    md5 = "0cd7c0c8a81e5d11b91b407a4aaaf3ff";
  };

  inherit openssl libX11 libjpeg;
  buildInputs = [
    libX11 libXt libXext zlib perl qt openssl pcre 
    pkgconfig libjpeg libpng libtiff libxml2 libxslt expat libtool freetype
  ];
}