853212def0
svn path=/nixpkgs/trunk/; revision=22434
30 lines
694 B
Nix
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;
|
|
};
|
|
}
|