svn path=/nixpkgs/trunk/; revision=17347
This commit is contained in:
Eelco Dolstra 2009-09-22 08:55:37 +00:00
parent cce34a0779
commit 912e9f2c80
2 changed files with 4 additions and 5 deletions

View file

@ -1,18 +1,17 @@
args: with args;
stdenv.mkDerivation rec {
name = "redland-1.0.9";
name = "redland-1.0.7";
src = fetchurl {
url = "mirror://sf/librdf/${name}.tar.gz";
sha256 = "090mkrbssj9lm7hifkdrm7397sqcw0wx2ydz60iwrm2x9zcdx45a";
sha256 = "1z160hhrnlyy5c8vh2hjza6kdfmzml8mg9dk8yffifkhnxjq5r2z";
};
buildInputs = [pkgconfig librdf_raptor];
buildInputs = [pkgconfig];
propagatedBuildInputs = [
bdb openssl libxslt perl mysql postgresql sqlite curl pcre libxml2
librdf_rasqal librdf_raptor
];
configureFlags = "--with-threads --with-bdb=${bdb}";

View file

@ -4182,7 +4182,7 @@ let
# Also known as librdf, includes raptor and rasqal
redland = import ../development/libraries/redland {
inherit fetchurl stdenv openssl libxml2 pkgconfig perl postgresql sqlite
mysql libxslt curl pcre librdf_rasqal librdf_raptor;
mysql libxslt curl pcre;
bdb = db4;
};