redis: 4.0.6 -> 4.0.7

This commit is contained in:
adisbladis 2018-01-27 19:40:23 +08:00
parent 740b16eda2
commit 1f80e7384e
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
version = "4.0.6";
version = "4.0.7";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "1ypnwmxwm49l0b8i9swcbjdxnc6f0r9zyqm2h423wz13xilmv6vn";
sha256 = "1lgcc5k6bg7f34lxbfx0xv74nj66khd5x8g1igyy2h7v8inm9fhv";
};
buildInputs = [ lua ];