updating redland, adding rasqal, raptor, librdf

svn path=/nixpkgs/trunk/; revision=17320
This commit is contained in:
Marc Weber
2009-09-21 09:58:21 +00:00
parent 5f37146a97
commit 028f3ec7d0
5 changed files with 79 additions and 4 deletions
@@ -0,0 +1,24 @@
args: with args;
stdenv.mkDerivation {
name = "rasqal-0.9.16";
src = fetchurl {
url = http://download.librdf.org/source/rasqal-0.9.16.tar.gz;
sha256 = "1qvxbkynxwfw22hn2qbgxczzaq24h9649bcfbc598x9gq5m7hsq6";
};
buildInputs = [
librdf_raptor
gmp /*or mpfr*/
#optional
pcre libxml2
];
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;
};
}