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

61 lines
2.2 KiB
Nix
Raw Normal View History

2021-04-18 15:40:25 +02:00
{ lib, stdenv, fetchurl, lua, pkg-config, nixosTests
, withSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isStatic, systemd
2021-09-22 17:37:09 +02:00
# dependency ordering is broken at the moment when building with openssl
, tlsSupport ? !stdenv.hostPlatform.isStatic, openssl
2020-12-29 04:01:42 +01:00
}:
stdenv.mkDerivation rec {
pname = "redis";
version = "6.2.6";
src = fetchurl {
url = "https://download.redis.io/releases/${pname}-${version}.tar.gz";
sha256 = "1ariw5x33hmmm3d5al0j3307l5kf3vhmn78wpyaz67hia1x8nasv";
};
# Cross-compiling fixes
configurePhase = ''
runHook preConfigure
2021-01-15 08:07:56 +01:00
${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)')
''}
runHook postConfigure
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ lua ]
2021-04-18 15:40:25 +02:00
++ lib.optional withSystemd systemd
2021-01-15 08:07:56 +01:00
++ lib.optionals tlsSupport [ openssl ];
# 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)" ]
2021-01-15 08:07:56 +01:00
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" "MALLOC=libc" ]
2021-04-18 15:40:25 +02:00
++ lib.optional withSystemd [ "USE_SYSTEMD=yes" ]
2021-01-15 08:07:56 +01:00
++ lib.optionals tlsSupport [ "BUILD_TLS=yes" ];
2013-01-22 00:27:34 +01:00
enableParallelBuilding = true;
2021-05-23 20:36:52 +02:00
hardeningEnable = [ "pie" ];
NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isClang [ "-std=c11" ];
2018-08-08 23:30:19 +02:00
doCheck = false; # needs tcl
2019-11-29 13:25:42 +01:00
passthru.tests.redis = nixosTests.redis;
meta = with lib; {
2020-03-16 08:36:57 +01:00
homepage = "https://redis.io";
description = "An open source, advanced key-value store";
2018-10-21 16:51:26 +02:00
license = licenses.bsd3;
2021-02-23 05:20:00 +01:00
platforms = platforms.all;
changelog = "https://github.com/redis/redis/raw/${version}/00-RELEASENOTES";
2021-02-23 05:20:00 +01:00
maintainers = with maintainers; [ berdario globin marsam ];
2021-09-28 23:35:37 +02:00
mainProgram = "redis-cli";
};
}