2011-08-15 18:04:51 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, libxslt, perl
|
2018-05-22 00:55:26 +00:00
|
|
|
, curl, pcre, libxml2, librdf_rasqal, gmp
|
2019-09-22 07:38:09 +00:00
|
|
|
, libmysqlclient, withMysql ? false
|
2011-08-15 18:04:51 +00:00
|
|
|
, postgresql, withPostgresql ? false
|
|
|
|
, sqlite, withSqlite ? true
|
2014-01-31 20:05:37 +00:00
|
|
|
, db, withBdb ? false
|
2011-08-15 18:04:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-09 11:33:59 +00:00
|
|
|
name = "redland-1.0.17";
|
2011-08-15 18:04:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.librdf.org/source/${name}.tar.gz";
|
2014-11-09 11:33:59 +00:00
|
|
|
sha256 = "de1847f7b59021c16bdc72abb4d8e2d9187cd6124d69156f3326dd34ee043681";
|
2011-08-15 18:04:51 +00:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2011-08-15 18:04:51 +00:00
|
|
|
|
2018-05-22 00:55:26 +00:00
|
|
|
buildInputs = [ openssl libxslt curl pcre libxml2 gmp ]
|
2019-09-22 07:38:09 +00:00
|
|
|
++ stdenv.lib.optional withMysql libmysqlclient
|
2011-08-15 18:04:51 +00:00
|
|
|
++ 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 18:04:51 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ librdf_rasqal ];
|
|
|
|
|
|
|
|
postInstall = "rm -rvf $out/share/gtk-doc";
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-threads" ]
|
2018-05-22 00:54:21 +00:00
|
|
|
++ stdenv.lib.optionals withBdb [
|
|
|
|
"--with-bdb-include=${db.dev}/include"
|
|
|
|
"--with-bdb-lib=${db.out}/lib"
|
|
|
|
];
|
2011-08-15 18:04:51 +00:00
|
|
|
|
2016-03-07 12:25:33 +00:00
|
|
|
# Fix broken DT_NEEDED in lib/redland/librdf_storage_sqlite.so.
|
|
|
|
NIX_CFLAGS_LINK = "-lraptor2";
|
|
|
|
|
2018-08-08 18:51:06 +00:00
|
|
|
doCheck = false; # fails 1 out of 17 tests with a segmentation fault
|
|
|
|
|
2018-10-18 19:38:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C libraries that provide support for the Resource Description Framework (RDF)";
|
2011-08-15 18:04:51 +00:00
|
|
|
homepage = http://librdf.org/;
|
2018-10-18 19:38:37 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.asl20;
|
2011-08-15 18:04:51 +00:00
|
|
|
};
|
|
|
|
}
|