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";
|
||||
|
||||
src = fetchurl {
|
||||
url = "sf://librdf/${name}.tar.gz";
|
||||
url = "mirror://sf/librdf/${name}.tar.gz";
|
||||
sha256 = "1z160hhrnlyy5c8vh2hjza6kdfmzml8mg9dk8yffifkhnxjq5r2z";
|
||||
};
|
||||
buildInputs = [ bdb openssl libxml2 pkgconfig perl];
|
||||
configureFlags="--without-static --with-threads --with-bdb=${bdb}";
|
||||
buildInputs = [pkgconfig];
|
||||
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";
|
||||
}
|
||||
|
|
|
@ -2592,8 +2592,9 @@ rec {
|
|||
|
||||
# Also known as librdf, includes raptor and rasqal
|
||||
redland = import ../development/libraries/redland {
|
||||
inherit fetchurl stdenv openssl libxml2 pkgconfig perl;
|
||||
bdb = db4;
|
||||
inherit fetchurl stdenv openssl libxml2 pkgconfig perl postgresql sqlite
|
||||
mysql libxslt curl pcre;
|
||||
bdb = db4;
|
||||
};
|
||||
|
||||
rte = import ../development/libraries/rte {
|
||||
|
|
Loading…
Reference in New Issue