3
0
Fork 0
forked from mirrors/nixpkgs

Added redland library (also known as librdf)

svn path=/nixpkgs/trunk/; revision=9390
This commit is contained in:
Yury G. Kudryashov 2007-10-01 15:14:50 +00:00
parent 889baf5551
commit 7d9d5b1484
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,13 @@
args:
with args;
stdenv.mkDerivation {
name = "redland-1.0.6";
src = fetchurl {
url = http://prdownloads.sourceforge.net/librdf/redland-1.0.6.tar.gz;
sha256 = "16hm8s6wy43avy4xcsq74n2dyzwzsdq2h2l2jav0by7s6mkh5gxw";
};
buildInputs = [ bdb openssl libxml2 pkgconfig perl];
configureFlags="--without-static --with-threads --with-bdb=${bdb}";
patchPhase="sed -e 1s@/usr@${perl}@ -i utils/touch-mtime.pl";
}

View file

@ -1986,6 +1986,12 @@ rec {
inherit fetchurl stdenv ncurses;
};
# Also known as librdf, includes raptor and rasqal
redland = import ../development/libraries/redland {
inherit fetchurl stdenv openssl libxml2 pkgconfig perl;
bdb = db4;
};
rte = import ../development/libraries/rte {
inherit fetchurl stdenv;
};