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

25 lines
597 B
Nix
Raw Normal View History

2016-04-21 19:50:03 +01:00
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
2017-02-19 10:54:31 +00:00
version = "3.2.8";
name = "redis-${version}";
src = fetchurl {
2014-05-06 16:05:08 +01:00
url = "http://download.redis.io/releases/${name}.tar.gz";
2017-02-19 10:54:31 +00:00
sha256 = "0b28d0fpkvf4m186gr2k53f1cqkccxzspmb959swrrhq7p177cv1";
};
2016-04-21 19:50:03 +01:00
buildInputs = [ lua ];
makeFlags = "PREFIX=$(out)";
2013-01-21 23:27:34 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://redis.io;
description = "An open source, advanced key-value store";
license = stdenv.lib.licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.berdario ];
};
}