redis: 3.0.7 -> 3.2.2

This commit is contained in:
Christine Koppelt 2016-07-30 21:50:34 +02:00
parent d5bec1a145
commit 83a2d74a7c

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
version = "3.0.7";
version = "3.2.2";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "08vzfdr67gp3lvk770qpax2c5g2sx8hn6p64jn3jddrvxb2939xj";
sha256 = "05cf63502b2248b5d39588962100bfa4fcb47dabd56931a8cb60b301b1d8daea";
};
buildInputs = [ lua ];