8cdc8687bf
The 6.0 changelog notes that systemd support was rewritten. The effects of that seem to be twofold: * Redis will silently fail to sd_notify if not built with libsystemd, breaking our unit configuration. * It also appears to misbehave if told to daemonize when running under systemd -- note that upstream's sample unit configuration does not daemonize: https://github.com/antirez/redis/blob/unstable/utils/systemd-redis_server.service
43 lines
1.7 KiB
Nix
43 lines
1.7 KiB
Nix
{ stdenv, fetchurl, lua, pkgconfig, systemd, jemalloc, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.0.1";
|
|
pname = "redis";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.redis.io/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "0wzjjcjy2pyd3fwwcb9g936ichrrmj4xqi4wp9ic3vbr0i1nwxdq";
|
|
};
|
|
|
|
# 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)')
|
|
''}
|
|
'';
|
|
|
|
buildInputs = [ lua pkgconfig ] ++ stdenv.lib.optional (stdenv.isLinux) systemd;
|
|
# 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!
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
++ stdenv.lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" "MALLOC=libc" ]
|
|
++ stdenv.lib.optional (stdenv.isLinux) ["USE_SYSTEMD=yes"];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # needs tcl
|
|
|
|
passthru.tests.redis = nixosTests.redis;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://redis.io";
|
|
description = "An open source, advanced key-value store";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ berdario globin ];
|
|
};
|
|
}
|