mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
wip: kdelibs
svn path=/nixpkgs/trunk/; revision=4261
This commit is contained in:
parent
dfce6ac924
commit
abcd9e8155
9
pkgs/development/libraries/kde/kdelibs/builder.sh
Normal file
9
pkgs/development/libraries/kde/kdelibs/builder.sh
Normal file
@ -0,0 +1,9 @@
|
||||
source $stdenv/setup
|
||||
|
||||
configureFlags="\
|
||||
--without-arts \
|
||||
--with-ssl-dir=$openssl \
|
||||
--x-includes=$libX11/include \
|
||||
--x-libraries=$libX11/lib"
|
||||
|
||||
genericBuild
|
17
pkgs/development/libraries/kde/kdelibs/default.nix
Normal file
17
pkgs/development/libraries/kde/kdelibs/default.nix
Normal file
@ -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
|
||||
];
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user