nixpkgs/pkgs/servers/nosql/redis/default.nix
R. RyanTM 87dae4f580 redis: 5.0.1 -> 5.0.3
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
2018-12-14 03:37:38 -08:00

27 lines
619 B
Nix

{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
version = "5.0.3";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "00iyv4ybcgm5xxcm85lg1p99q7xijm05cpadlxa65chpz3fv9472";
};
buildInputs = [ lua ];
makeFlags = "PREFIX=$(out)";
enableParallelBuilding = true;
doCheck = false; # needs tcl
meta = with stdenv.lib; {
homepage = https://redis.io;
description = "An open source, advanced key-value store";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.berdario ];
};
}