2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, lua, pkgconfig, systemd, jemalloc, nixosTests
|
2020-12-29 03:01:42 +00:00
|
|
|
, tlsSupport ? true, openssl
|
|
|
|
}:
|
2012-02-03 13:12:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-23 09:47:44 +01:00
|
|
|
version = "6.0.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "redis";
|
2012-02-03 13:12:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://download.redis.io/releases/${pname}-${version}.tar.gz";
|
2020-07-23 09:47:44 +01:00
|
|
|
sha256 = "151x6qicmrmlxkmiwi2vdq8p50d52b9gglp8csag6pmgcfqlkb8j";
|
2012-02-03 13:12:07 +00:00
|
|
|
};
|
|
|
|
|
2019-08-29 15:12:06 +01:00
|
|
|
# Cross-compiling fixes
|
|
|
|
configurePhase = ''
|
|
|
|
${stdenv.lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
|
|
|
|
# This fixes hiredis, which has the AR awkwardly coded.
|
|
|
|
# Probably a good candidate for a patch upstream.
|
|
|
|
makeFlagsArray+=('STLIB_MAKE_CMD=${stdenv.cc.targetPrefix}ar rcs $(STLIBNAME)')
|
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
2021-01-04 02:10:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ lua ]
|
2020-12-29 03:01:42 +00:00
|
|
|
++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) systemd
|
|
|
|
++ stdenv.lib.optionals tlsSupport [ openssl ];
|
2019-08-29 15:12:06 +01:00
|
|
|
# More cross-compiling fixes.
|
|
|
|
# Note: this enables libc malloc as a temporary fix for cross-compiling.
|
|
|
|
# Due to hardcoded configure flags in jemalloc, we can't cross-compile vendored jemalloc properly, and so we're forced to use libc allocator.
|
|
|
|
# It's weird that the build isn't failing because of failure to compile dependencies, it's from failure to link them!
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
2020-05-17 09:11:41 +01:00
|
|
|
++ stdenv.lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" "MALLOC=libc" ]
|
2020-12-29 03:01:42 +00:00
|
|
|
++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) ["USE_SYSTEMD=yes"]
|
|
|
|
++ stdenv.lib.optionals tlsSupport [ "BUILD_TLS=yes" ];
|
2012-02-03 13:12:07 +00:00
|
|
|
|
2013-01-21 23:27:34 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-08 22:30:19 +01:00
|
|
|
doCheck = false; # needs tcl
|
|
|
|
|
2019-11-29 12:25:42 +00:00
|
|
|
passthru.tests.redis = nixosTests.redis;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-16 07:36:57 +00:00
|
|
|
homepage = "https://redis.io";
|
2012-02-03 13:12:07 +00:00
|
|
|
description = "An open source, advanced key-value store";
|
2018-10-21 15:51:26 +01:00
|
|
|
license = licenses.bsd3;
|
2014-05-15 20:11:17 +01:00
|
|
|
platforms = platforms.unix;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ berdario globin ];
|
2012-02-03 13:12:07 +00:00
|
|
|
};
|
|
|
|
}
|