redis: 5.0.3 -> 5.0.4 (#58867)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/redis/versions
This commit is contained in:
R. RyanTM 2019-04-08 13:16:47 -07:00 committed by xeji
parent 875c891ee4
commit 4493358e89

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
version = "5.0.3";
version = "5.0.4";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "00iyv4ybcgm5xxcm85lg1p99q7xijm05cpadlxa65chpz3fv9472";
sha256 = "1pc7r4lbvhiyln7y529798nv8lxasky6sgspw49hkxi3bbzwxs9w";
};
buildInputs = [ lua ];