* Update a bunch of dependencies of kdelibs.

svn path=/nixpkgs/branches/kde-4.7/; revision=27702
This commit is contained in:
Eelco Dolstra
2011-07-11 10:49:21 +00:00
parent 22ab3fe1ab
commit 76ec0dd430
11 changed files with 85 additions and 102 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, fetchurl, libxml2, libxslt, curl }:
stdenv.mkDerivation rec {
name = "raptor2-2.0.3";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "1icfg01zx3d3czqz774ar2mmnp8a9m248y5zvi5yn0fzs0nyc8g2";
};
buildInputs = [ libxml2 libxslt ];
postInstall = "rm -rf $out/share/gtk-doc";
meta = {
description = "The RDF Parser Toolkit";
homepage = "http://librdf.org/raptor";
license = "LGPL-2.1 Apache-2.0";
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@@ -8,12 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "a042846e8b7af52d9d66fba788c9d579e58c535cfaf80d33dc0bd69bf6ffeb08";
};
buildInputs = [ librdf_raptor gmp /*or mpfr*/ pkgconfig pcre libxml2 ];
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -lraptor"
'';
buildInputs = [ pkgconfig librdf_raptor gmp pcre libxml2 ];
postInstall = "rm -rf $out/share/gtk-doc";
meta = {
description = "Library that handles Resource Description Framework (RDF)";
homepage = "http://librdf.org/rasqal";