Added redland library (also known as librdf)
svn path=/nixpkgs/trunk/; revision=9390
This commit is contained in:
parent
889baf5551
commit
7d9d5b1484
|
@ -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";
|
||||||
|
}
|
|
@ -1986,6 +1986,12 @@ rec {
|
||||||
inherit fetchurl stdenv ncurses;
|
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 {
|
rte = import ../development/libraries/rte {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue