Update redis to 3.0.2 (now that 3 is stable, squash it into default)

include fix for http://benmmurphy.github.io/blog/2015/06/04/redis-eval-lua-sandbox-escape/
This commit is contained in:
Dario Bertini 2015-06-04 16:36:53 +01:00
parent f1d465f429
commit 0ed91e1c4d
No known key found for this signature in database
GPG Key ID: B002EFE5F9B7F7F4
3 changed files with 3 additions and 26 deletions

View File

@ -1,23 +0,0 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "3.0.1";
name = "redis-${version}";
src = fetchurl {
url = "https://github.com/antirez/redis/archive/${version}.tar.gz";
sha256 = "1m34s60qvj1xyqw7x7ar0graw52wypx47dhvfb0br67vfb62l8sl";
};
makeFlags = "PREFIX=$(out)";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://redis.io;
description = "An open source, advanced key-value store";
license = stdenv.lib.licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.berdario ];
};
}

View File

@ -1,11 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "redis-2.8.19";
version = "3.0.2";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "29bb08abfc3d392b2f0c3e7f48ec46dd09ab1023f9a5575fc2a93546f4ca5145";
sha256 = "93e422c0d584623601f89b956045be158889ebe594478a2c24e1bf218495633f";
};
makeFlags = "PREFIX=$(out)";

View File

@ -8959,7 +8959,6 @@ let
radius = callPackage ../servers/radius { };
redis = callPackage ../servers/nosql/redis { };
redis3 = callPackage ../servers/nosql/redis/3.0.nix { };
redstore = callPackage ../servers/http/redstore { };