nixpkgs/pkgs/servers/nosql/redis/default.nix

27 lines
619 B
Nix
Raw Normal View History

2018-01-04 08:34:36 +00:00
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
version = "5.0.4";
name = "redis-${version}";
src = fetchurl {
2014-05-06 16:05:08 +01:00
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "1pc7r4lbvhiyln7y529798nv8lxasky6sgspw49hkxi3bbzwxs9w";
};
2016-04-21 19:50:03 +01:00
buildInputs = [ lua ];
makeFlags = "PREFIX=$(out)";
2013-01-21 23:27:34 +00:00
enableParallelBuilding = true;
2018-08-08 22:30:19 +01:00
doCheck = false; # needs tcl
meta = with stdenv.lib; {
2018-06-27 21:12:57 +01:00
homepage = https://redis.io;
description = "An open source, advanced key-value store";
2018-10-21 15:51:26 +01:00
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.berdario ];
};
}