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