Merge pull request #49945 from r-ryantm/auto-update/redis

redis: 5.0.0 -> 5.0.1
This commit is contained in:
Jörg Thalheim 2018-11-08 21:26:52 +00:00 committed by GitHub
commit 63ff3221fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
version = "5.0.0";
version = "5.0.1";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "194rvj3wzdil2rny93vq9g9vlqnb7gv4vnwaklybgcj00qnqpjbh";
sha256 = "1jxbjmsxn0lgh0y3k5j57rxf2sdjj71hxhw4jcvsvycpxh77r9l2";
};
buildInputs = [ lua ];