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 {
|
2013-03-02 15:45:13 +01:00
|
|
|
name = "rasqal-0.9.30";
|
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";
|
2013-03-02 15:45:13 +01:00
|
|
|
sha256 = "1z8wifq79kivcwpwzmjnjdrbr65zam190gpxhgrvsyfch0yykw5b";
|
2009-09-21 11:58:21 +02:00
|
|
|
};
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-08-15 20:04:51 +02:00
|
|
|
|
|
|
|
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";
|
2013-03-02 15:45:13 +01: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
|
|
|
};
|
|
|
|
}
|