mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
redis: 6.0.10 -> 6.2.0
https://github.com/redis/redis/blob/6.2.0/00-RELEASENOTES
This commit is contained in:
parent
ebe2a8b77f
commit
2ff821ed77
|
@ -1,14 +1,14 @@
|
|||
{ lib, stdenv, fetchurl, lua, pkg-config, systemd, jemalloc, nixosTests
|
||||
{ lib, stdenv, fetchurl, lua, pkg-config, systemd, nixosTests
|
||||
, tlsSupport ? true, openssl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "6.0.10";
|
||||
pname = "redis";
|
||||
version = "6.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.redis.io/releases/${pname}-${version}.tar.gz";
|
||||
sha256 = "1gc529nfh8frk4pynyjlnmzvwa0j9r5cmqwyd7537sywz6abifvr";
|
||||
url = "https://download.redis.io/releases/${pname}-${version}.tar.gz";
|
||||
sha256 = "1jnv6acjlljvrlxmz0mqarsx1fl5vwss24l8zy5dcawnbp129mk7";
|
||||
};
|
||||
|
||||
# Cross-compiling fixes
|
||||
|
@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isClang [ "-std=c11" ];
|
||||
|
||||
doCheck = false; # needs tcl
|
||||
|
||||
passthru.tests.redis = nixosTests.redis;
|
||||
|
|
Loading…
Reference in a new issue