1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/librdf/rasqal.nix

27 lines
751 B
Nix
Raw Normal View History

{ stdenv, fetchurl, librdf_raptor2, gmp, pkgconfig, pcre, libxml2 }:
stdenv.mkDerivation rec {
name = "rasqal-0.9.33";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "0z6rrwn4jsagvarg8d5zf0j352kjgi33py39jqd29gbhcnncj939";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gmp pcre libxml2 ];
propagatedBuildInputs = [ librdf_raptor2 ];
postInstall = "rm -rvf $out/share/gtk-doc";
2013-03-02 14:45:13 +00:00
meta = {
description = "Library that handles Resource Description Framework (RDF)";
homepage = http://librdf.org/rasqal;
license = with stdenv.lib.licenses; [ lgpl21 asl20 ];
maintainers = with stdenv.lib.maintainers; [ marcweber ];
2018-05-22 01:53:08 +01:00
platforms = stdenv.lib.platforms.unix;
};
}