redland: more dependencies
svn path=/nixpkgs/branches/stdenv-updates/; revision=10615
This commit is contained in:
parent
615ef1d16b
commit
40e41fe362
|
@ -4,10 +4,12 @@ stdenv.mkDerivation rec {
|
||||||
name = "redland-1.0.7";
|
name = "redland-1.0.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "sf://librdf/${name}.tar.gz";
|
url = "mirror://sf/librdf/${name}.tar.gz";
|
||||||
sha256 = "1z160hhrnlyy5c8vh2hjza6kdfmzml8mg9dk8yffifkhnxjq5r2z";
|
sha256 = "1z160hhrnlyy5c8vh2hjza6kdfmzml8mg9dk8yffifkhnxjq5r2z";
|
||||||
};
|
};
|
||||||
buildInputs = [ bdb openssl libxml2 pkgconfig perl];
|
buildInputs = [pkgconfig];
|
||||||
configureFlags="--without-static --with-threads --with-bdb=${bdb}";
|
propagatedBuildInputs = [ bdb openssl libxslt perl mysql postgresql sqlite
|
||||||
|
curl pcre];
|
||||||
|
configureFlags = "--disable-static --with-threads --with-bdb=${bdb}";
|
||||||
patchPhase="sed -e 1s@/usr@${perl}@ -i utils/touch-mtime.pl";
|
patchPhase="sed -e 1s@/usr@${perl}@ -i utils/touch-mtime.pl";
|
||||||
}
|
}
|
||||||
|
|
|
@ -2592,8 +2592,9 @@ rec {
|
||||||
|
|
||||||
# Also known as librdf, includes raptor and rasqal
|
# Also known as librdf, includes raptor and rasqal
|
||||||
redland = import ../development/libraries/redland {
|
redland = import ../development/libraries/redland {
|
||||||
inherit fetchurl stdenv openssl libxml2 pkgconfig perl;
|
inherit fetchurl stdenv openssl libxml2 pkgconfig perl postgresql sqlite
|
||||||
bdb = db4;
|
mysql libxslt curl pcre;
|
||||||
|
bdb = db4;
|
||||||
};
|
};
|
||||||
|
|
||||||
rte = import ../development/libraries/rte {
|
rte = import ../development/libraries/rte {
|
||||||
|
|
Loading…
Reference in New Issue