summary refs log tree commit diff
path: root/pkgs/development/libraries/librdf/rasqal.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-09-21 09:58:21 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-09-21 09:58:21 +0000
commit028f3ec7d0d0682b504945822862733fe74d75ba (patch)
tree125bf38c9755482c94b7cfd4b8b2ed52201358ad /pkgs/development/libraries/librdf/rasqal.nix
parent5f37146a9742bc29e683fa700c7d73adcc4b0357 (diff)
downloadnixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.tar
nixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.tar.gz
nixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.tar.bz2
nixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.tar.lz
nixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.tar.xz
nixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.tar.zst
nixpkgs-028f3ec7d0d0682b504945822862733fe74d75ba.zip
updating redland, adding rasqal, raptor, librdf
svn path=/nixpkgs/trunk/; revision=17320
Diffstat (limited to 'pkgs/development/libraries/librdf/rasqal.nix')
-rw-r--r--pkgs/development/libraries/librdf/rasqal.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/librdf/rasqal.nix b/pkgs/development/libraries/librdf/rasqal.nix
new file mode 100644
index 00000000000..ff3bcbfbd16
--- /dev/null
+++ b/pkgs/development/libraries/librdf/rasqal.nix
@@ -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;
+  };
+}