Skip to content

Commit

Permalink
wip: kdelibs
Browse files Browse the repository at this point in the history
svn path=/nixpkgs/trunk/; revision=4261
  • Loading branch information
Martin Bravenboer committed Nov 12, 2005
1 parent dfce6ac commit abcd9e8
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/development/libraries/kde/kdelibs/builder.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
source $stdenv/setup

configureFlags="\
--without-arts \
--with-ssl-dir=$openssl \
--x-includes=$libX11/include \
--x-libraries=$libX11/lib"

genericBuild
17 changes: 17 additions & 0 deletions pkgs/development/libraries/kde/kdelibs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{stdenv, fetchurl, libX11, libXt, libXext, zlib, perl, qt, openssl, pcre,
pkgconfig, libjpeg, libpng, libtiff, libxml2, libxslt, libtool, expat}:

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;
buildInputs = [
libX11 libXt libXext zlib perl qt openssl pcre
pkgconfig libjpeg libpng libtiff libxml2 libxslt expat libtool
];
}
6 changes: 6 additions & 0 deletions pkgs/system/all-packages-generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,12 @@ rec {
inherit (xlibs) libXft libXrender;
};

kdelibs = import ../development/libraries/kde/kdelibs {
inherit fetchurl stdenv zlib perl openssl pcre pkgconfig libjpeg libpng libtiff libxml2 libxslt libtool expat;
inherit (xlibs) libX11 libXt libXext;
qt = qt3;
};

gtksharp1 = (import ../development/libraries/gtk-sharp-1) {
inherit fetchurl stdenv mono pkgconfig libxml2 monoDLLFixer;
inherit (gnome) gtk glib pango libglade libgtkhtml gtkhtml
Expand Down

0 comments on commit abcd9e8

Please sign in to comment.