b0bbca7b93
* rename redland to librdf_redland * add compatibility alias * propagate some inputs svn path=/nixpkgs/trunk/; revision=28589
27 lines
742 B
Nix
27 lines
742 B
Nix
{ stdenv, fetchurl, librdf_raptor2, gmp, pkgconfig, pcre, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rasqal-0.9.26";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.librdf.org/source/${name}.tar.gz";
|
|
sha256 = "1drjcy1k9g72iis0ghllzn7n0w03bahhrd2p5hs39anbm6mr0yk9";
|
|
};
|
|
|
|
buildNativeInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gmp pcre libxml2 ];
|
|
|
|
propagatedBuildInputs = [ librdf_raptor2 ];
|
|
|
|
postInstall = "rm -rvf $out/share/gtk-doc";
|
|
|
|
meta = {
|
|
description = "Library that handles Resource Description Framework (RDF)";
|
|
homepage = "http://librdf.org/rasqal";
|
|
license = "LGPL-2.1 Apache-2.0";
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber urkud ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|