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