redis: 3.2.9 -> 4.0.1

This commit is contained in:
adisbladis 2017-09-18 11:26:16 +08:00
parent 3dc65ee2e8
commit ed2f7f509e
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 = "3.2.9";
version = "4.0.1";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "09pzb468jfps1w7bx2xpsvalj5r3q8hav7l3s10f91xjhflwzakf";
sha256 = "14bm8lkhylc93r4dgl7kkzzpw2xq7gr6w6h80n3jazqnx5mcsj90";
};
buildInputs = [ lua ];