Unverified Commit 20923ea8 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

valkey: 8.1.3 -> 8.1.4 (#448627)

parents d350e79d 2c16b1b1
Loading
Loading
Loading
Loading
+3 −11
Original line number Diff line number Diff line
@@ -25,24 +25,16 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "valkey";
  version = "8.1.3";
  version = "8.1.4";

  src = fetchFromGitHub {
    owner = "valkey-io";
    repo = "valkey";
    rev = finalAttrs.version;
    hash = "sha256-JFtStE1avSWGptgj9KtfAr55+J1FydEzD5plvSe2mjM=";
    hash = "sha256-obtmiDobMs/POqYH5XjqpzmjVrEC6gUsTc1rREDJ8tw=";
  };

  patches = [
    # Fix tests on 8.1.3
    # FIXME: remove for next release
    (fetchpatch {
      url = "https://github.com/valkey-io/valkey/commit/02d7ee08489fe34f853ffccce9057dea6f03d957.diff";
      hash = "sha256-/5U6HqgK4m1XQGTZchSmzl7hOBxCwL4XZVjE5QIZVjc=";
    })
  ]
  ++ lib.optional useSystemJemalloc ./use_system_jemalloc.patch;
  patches = lib.optional useSystemJemalloc ./use_system_jemalloc.patch;

  nativeBuildInputs = [ pkg-config ];