1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #48783 from marsam/feature/update-redis

redis: 4.0.11 -> 5.0.0
This commit is contained in:
Sarah Brofeldt 2018-10-23 10:10:17 +02:00 committed by GitHub
commit 1d8c5e70cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};