nixpkgs/pkgs/development/libraries/librdf/rasqal.nix
Michael Raskin 853212def0 Adding 4store RDF storage/SparQL server
svn path=/nixpkgs/trunk/; revision=22434
2010-06-30 21:51:48 +00:00

30 lines
694 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "rasqal-0.9.19";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "a042846e8b7af52d9d66fba788c9d579e58c535cfaf80d33dc0bd69bf6ffeb08";
};
buildInputs = [
librdf_raptor
gmp /*or mpfr*/
pkgconfig
#optional
pcre libxml2
];
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -lraptor"
'';
meta = {
description = "library that handles Resource Description Framework (RDF)";
homepage = "http://librdf.org/rasqal";
license = "LGPL-2.1 Apache-2.0";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}