nixpkgs/pkgs/development/libraries/librdf/raptor2.nix
Yury G. Kudryashov 3b6d1525f4 librdf_*: up2date
svn path=/nixpkgs/trunk/; revision=28588
2011-08-15 18:04:40 +00:00

23 lines
596 B
Nix

{ stdenv, fetchurl, libxml2, libxslt, curl }:
stdenv.mkDerivation rec {
name = "raptor2-2.0.4";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "0viaam60adhsxim2vaq5xs1pfmm6wiidxpkrhwyl7x9mz8x9vx1l";
};
buildInputs = [ libxml2 libxslt ];
postInstall = "rm -rvf $out/share/gtk-doc";
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;
};
}