2011-08-15 19:04:40 +01:00
|
|
|
{ stdenv, fetchurl, librdf_raptor2, gmp, pkgconfig, pcre, libxml2 }:
|
2010-07-28 12:55:54 +01:00
|
|
|
|
2010-06-30 22:51:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 15:50:41 +00:00
|
|
|
name = "rasqal-0.9.31";
|
2009-09-21 10:58:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-06-30 22:51:48 +01:00
|
|
|
url = "http://download.librdf.org/source/${name}.tar.gz";
|
2013-12-18 15:50:41 +00:00
|
|
|
sha256 = "1vkzifr488i31vxdnykyf2aq87023vx4bag4d94b1rdhy74l7mr8";
|
2009-09-21 10:58:21 +01:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-08-15 19:04:51 +01:00
|
|
|
|
|
|
|
buildInputs = [ gmp pcre libxml2 ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ librdf_raptor2 ];
|
2010-06-30 06:44:33 +01:00
|
|
|
|
2011-08-15 19:04:40 +01:00
|
|
|
postInstall = "rm -rvf $out/share/gtk-doc";
|
2013-03-02 14:45:13 +00:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Library that handles Resource Description Framework (RDF)";
|
2009-09-21 10:58:21 +01:00
|
|
|
homepage = "http://librdf.org/rasqal";
|
|
|
|
license = "LGPL-2.1 Apache-2.0";
|
2011-08-15 19:04:40 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber urkud ];
|
2010-07-28 12:55:54 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-21 10:58:21 +01:00
|
|
|
};
|
|
|
|
}
|