2020-12-28 19:01:42 -08:00
|
|
|
{ stdenv, fetchurl, lua, pkgconfig, systemd, jemalloc, nixosTests
|
|
|
|
, tlsSupport ? true, openssl
|
|
|
|
}:
|
2012-02-03 05:12:07 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-23 01:47:44 -07:00
|
|
|
version = "6.0.6";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "redis";
|
2012-02-03 05:12:07 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://download.redis.io/releases/${pname}-${version}.tar.gz";
|
2020-07-23 01:47:44 -07:00
|
|
|
sha256 = "151x6qicmrmlxkmiwi2vdq8p50d52b9gglp8csag6pmgcfqlkb8j";
|
2012-02-03 05:12:07 -08:00
|
|
|
};
|
|
|
|
|
2019-08-29 07:12:06 -07: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)')
|
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
2020-12-28 19:01:42 -08:00
|
|
|
buildInputs = [ lua pkgconfig ]
|
|
|
|
++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) systemd
|
|
|
|
++ stdenv.lib.optionals tlsSupport [ openssl ];
|
2019-08-29 07:12:06 -07: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 06:03:25 -07:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
2020-05-17 01:11:41 -07:00
|
|
|
++ stdenv.lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" "MALLOC=libc" ]
|
2020-12-28 19:01:42 -08:00
|
|
|
++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) ["USE_SYSTEMD=yes"]
|
|
|
|
++ stdenv.lib.optionals tlsSupport [ "BUILD_TLS=yes" ];
|
2012-02-03 05:12:07 -08:00
|
|
|
|
2013-01-21 15:27:34 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-08 14:30:19 -07:00
|
|
|
doCheck = false; # needs tcl
|
|
|
|
|
2019-11-29 04:25:42 -08:00
|
|
|
passthru.tests.redis = nixosTests.redis;
|
|
|
|
|
2014-05-15 12:11:17 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-16 00:36:57 -07:00
|
|
|
homepage = "https://redis.io";
|
2012-02-03 05:12:07 -08:00
|
|
|
description = "An open source, advanced key-value store";
|
2018-10-21 07:51:26 -07:00
|
|
|
license = licenses.bsd3;
|
2014-05-15 12:11:17 -07:00
|
|
|
platforms = platforms.unix;
|
2019-08-20 10:36:05 -07:00
|
|
|
maintainers = with maintainers; [ berdario globin ];
|
2012-02-03 05:12:07 -08:00
|
|
|
};
|
|
|
|
}
|