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

27 lines
632 B
Nix
Raw Normal View History

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