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

27 lines
619 B
Nix
Raw Normal View History

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