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

54 lines
2.0 KiB
Nix
Raw Normal View History

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