summary refs log tree commit diff
path: root/pkgs/development/libraries/librdf/rasqal.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2010-06-30 21:51:48 +0000
committerMichael Raskin <7c6f434c@mail.ru>2010-06-30 21:51:48 +0000
commit853212def065435f3e12ace05edee3fa47792064 (patch)
tree17129f6ddfcd13ee64ac3e10b30d018e894fc558 /pkgs/development/libraries/librdf/rasqal.nix
parent6caaf0286dca5812c9701a644b02e8036814c33c (diff)
downloadnixpkgs-853212def065435f3e12ace05edee3fa47792064.tar
nixpkgs-853212def065435f3e12ace05edee3fa47792064.tar.gz
nixpkgs-853212def065435f3e12ace05edee3fa47792064.tar.bz2
nixpkgs-853212def065435f3e12ace05edee3fa47792064.tar.lz
nixpkgs-853212def065435f3e12ace05edee3fa47792064.tar.xz
nixpkgs-853212def065435f3e12ace05edee3fa47792064.tar.zst
nixpkgs-853212def065435f3e12ace05edee3fa47792064.zip
Adding 4store RDF storage/SparQL server
svn path=/nixpkgs/trunk/; revision=22434
Diffstat (limited to 'pkgs/development/libraries/librdf/rasqal.nix')
-rw-r--r--pkgs/development/libraries/librdf/rasqal.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/libraries/librdf/rasqal.nix b/pkgs/development/libraries/librdf/rasqal.nix
index 6b7e2fcd89d..ee99a173b6f 100644
--- a/pkgs/development/libraries/librdf/rasqal.nix
+++ b/pkgs/development/libraries/librdf/rasqal.nix
@@ -1,15 +1,16 @@
 args: with args;
-stdenv.mkDerivation {
-  name = "rasqal-0.9.16";
+stdenv.mkDerivation rec {
+  name = "rasqal-0.9.19";
 
   src = fetchurl {
-    url = http://download.librdf.org/source/rasqal-0.9.16.tar.gz;
-    sha256 = "1qvxbkynxwfw22hn2qbgxczzaq24h9649bcfbc598x9gq5m7hsq6";
+    url = "http://download.librdf.org/source/${name}.tar.gz";
+    sha256 = "a042846e8b7af52d9d66fba788c9d579e58c535cfaf80d33dc0bd69bf6ffeb08";
   };
 
   buildInputs = [
     librdf_raptor
     gmp /*or mpfr*/
+    pkgconfig
     #optional
     pcre libxml2 
     ];