summary refs log tree commit diff
path: root/pkgs/development/libraries/librdf
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
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')
-rw-r--r--pkgs/development/libraries/librdf/default.nix19
-rw-r--r--pkgs/development/libraries/librdf/raptor.nix21
-rw-r--r--pkgs/development/libraries/librdf/rasqal.nix24
3 files changed, 64 insertions, 0 deletions
diff --git a/pkgs/development/libraries/librdf/default.nix b/pkgs/development/libraries/librdf/default.nix
new file mode 100644
index 00000000000..05ffb27bc0a
--- /dev/null
+++ b/pkgs/development/libraries/librdf/default.nix
@@ -0,0 +1,19 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "liblrdf-0.4.0";
+
+  src = fetchurl {
+    url = mirror://sourceforge/lrdf/liblrdf/0.4.0/liblrdf-0.4.0.tar.gz;
+    sha256 = "015jv7pp0a0qxgljgdvf7d01nj4fx0zgzg0wayjp7v86pa38xscm";
+  };
+
+  buildInputs = [pkgconfig librdf_raptor ladspaH openssl zlib];
+
+  meta = { 
+    description = "A lightweight RDF library with special support for LADSPA plugins.";
+    homepage = http://sourceforge.net/projects/lrdf/;
+    license = "GPLv2";
+    maintainers = [args.lib.maintainers.marcweber];
+    platforms = args.lib.platforms.linux;
+  };
+}
diff --git a/pkgs/development/libraries/librdf/raptor.nix b/pkgs/development/libraries/librdf/raptor.nix
new file mode 100644
index 00000000000..294e51c6654
--- /dev/null
+++ b/pkgs/development/libraries/librdf/raptor.nix
@@ -0,0 +1,21 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "raptor-1.4.19";
+
+  src = fetchurl {
+    url = http://download.librdf.org/source/raptor-1.4.19.tar.gz;
+    sha256 = "0qpfl73dvkhngica7wk9qglvd0b3fp9wqnjkl5q8m6h1kf8605ml";
+  };
+
+  buildInputs = [
+    #optional
+    libxml2 curl];
+
+  meta = { 
+    description = "The RDF Parser Toolkit";
+    homepage = "http://librdf.org/raptor";
+    license = "LGPL-2.1 Apache-2.0";
+    maintainers = [args.lib.maintainers.marcweber];
+    platforms = args.lib.platforms.linux;
+  };
+}
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;
+  };
+}