nixpkgs/pkgs/development/libraries/librdf/raptor2.nix

23 lines
640 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libxml2, libxslt, curl }:
stdenv.mkDerivation rec {
2013-03-02 14:45:13 +00:00
name = "raptor2-2.0.8"; # 2.0.9 misses a header and so fails liblrdf
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
2013-03-02 14:45:13 +00:00
sha256 = "1mz7cxnfw73saf74c9if06n2mlsvn2rnn67vy7j2mq3wkhy0hcb0";
};
buildInputs = [ libxml2 libxslt ];
postInstall = "rm -rvf $out/share/gtk-doc";
2013-03-02 14:45:13 +00:00
meta = {
description = "The RDF Parser Toolkit";
homepage = "http://librdf.org/raptor";
license = "LGPL-2.1 Apache-2.0";
maintainers = with stdenv.lib.maintainers; [ marcweber urkud ];
platforms = stdenv.lib.platforms.linux;
};
}