From 6fb8f2c6b7a18a884d6327c591f9bf8d6f46cc1a Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Tue, 15 Jan 2008 01:41:20 +0000 Subject: [PATCH] redland: upgraded to 1.0.7 svn path=/nixpkgs/branches/stdenv-updates/; revision=10146 --- pkgs/development/libraries/redland/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/redland/default.nix b/pkgs/development/libraries/redland/default.nix index 1e657991eab..37d899feb70 100644 --- a/pkgs/development/libraries/redland/default.nix +++ b/pkgs/development/libraries/redland/default.nix @@ -1,11 +1,11 @@ args: with args; -stdenv.mkDerivation { - name = "redland-1.0.6"; +stdenv.mkDerivation rec { + name = "redland-1.0.7"; src = fetchurl { - url = http://prdownloads.sourceforge.net/librdf/redland-1.0.6.tar.gz; - sha256 = "16hm8s6wy43avy4xcsq74n2dyzwzsdq2h2l2jav0by7s6mkh5gxw"; + url = "sf://librdf/${name}.tar.gz"; + sha256 = "1z160hhrnlyy5c8vh2hjza6kdfmzml8mg9dk8yffifkhnxjq5r2z"; }; buildInputs = [ bdb openssl libxml2 pkgconfig perl]; configureFlags="--without-static --with-threads --with-bdb=${bdb}";