2011-08-15 19:04:51 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, libxslt, perl
|
|
|
|
, curl, pcre, libxml2, librdf_rasqal
|
|
|
|
, mysql, withMysql ? false
|
|
|
|
, postgresql, withPostgresql ? false
|
|
|
|
, sqlite, withSqlite ? true
|
2014-01-31 20:05:37 +00:00
|
|
|
, db, withBdb ? false
|
2011-08-15 19:04:51 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-03-02 14:45:13 +00:00
|
|
|
name = "redland-1.0.16";
|
2011-08-15 19:04:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.librdf.org/source/${name}.tar.gz";
|
2013-03-02 14:45:13 +00:00
|
|
|
sha256 = "1gcx0h5dxa3c4xhhjk3gr0708zjj0n6zpslvbjfi2qbf13y798nr";
|
2011-08-15 19:04:51 +01:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2011-08-15 19:04:51 +01:00
|
|
|
|
|
|
|
buildInputs = [ openssl libxslt curl pcre libxml2 ]
|
|
|
|
++ stdenv.lib.optional withMysql mysql
|
|
|
|
++ stdenv.lib.optional withSqlite sqlite
|
|
|
|
++ stdenv.lib.optional withPostgresql postgresql
|
2014-01-31 20:05:37 +00:00
|
|
|
++ stdenv.lib.optional withBdb db;
|
2011-08-15 19:04:51 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ librdf_rasqal ];
|
|
|
|
|
|
|
|
postInstall = "rm -rvf $out/share/gtk-doc";
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-threads" ]
|
2014-01-31 20:05:37 +00:00
|
|
|
++ stdenv.lib.optional withBdb "--with-bdb=${db}";
|
2011-08-15 19:04:51 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://librdf.org/;
|
|
|
|
};
|
|
|
|
}
|