Merge pull request #48783 from marsam/feature/update-redis
redis: 4.0.11 -> 5.0.0
This commit is contained in:
commit
1d8c5e70cf
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
{ stdenv, fetchurl, lua }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "4.0.11";
|
||||
version = "5.0.0";
|
||||
name = "redis-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.redis.io/releases/${name}.tar.gz";
|
||||
sha256 = "1fqvxlpaxr80iykyvpf1fia8rxh4zz8paf5nnjncsssqwwxfflzw";
|
||||
sha256 = "194rvj3wzdil2rny93vq9g9vlqnb7gv4vnwaklybgcj00qnqpjbh";
|
||||
};
|
||||
|
||||
buildInputs = [ lua ];
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||
meta = with stdenv.lib; {
|
||||
homepage = https://redis.io;
|
||||
description = "An open source, advanced key-value store";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.berdario ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue