2011-08-15 18:04:40 +00:00
|
|
|
{ stdenv, fetchurl, librdf_raptor2, gmp, pkgconfig, pcre, libxml2 }:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2010-06-30 21:51:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-09 11:33:59 +00:00
|
|
|
name = "rasqal-0.9.32";
|
2009-09-21 09:58:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-06-30 21:51:48 +00:00
|
|
|
url = "http://download.librdf.org/source/${name}.tar.gz";
|
2014-11-09 11:33:59 +00:00
|
|
|
sha256 = "eeba03218e3b7dfa033934d523a1a64671a9a0f64eadc38a01e4b43367be2e8f";
|
2009-09-21 09:58:21 +00:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-08-15 18:04:51 +00:00
|
|
|
|
|
|
|
buildInputs = [ gmp pcre libxml2 ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ librdf_raptor2 ];
|
2010-06-30 05:44:33 +00:00
|
|
|
|
2011-08-15 18:04:40 +00:00
|
|
|
postInstall = "rm -rvf $out/share/gtk-doc";
|
2013-03-02 14:45:13 +00:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 11:55:54 +00:00
|
|
|
description = "Library that handles Resource Description Framework (RDF)";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://librdf.org/rasqal;
|
2014-11-06 00:44:33 +00:00
|
|
|
license = with stdenv.lib.licenses; [ lgpl21 asl20 ];
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber ];
|
2010-07-28 11:55:54 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-21 09:58:21 +00:00
|
|
|
};
|
|
|
|
}
|