Unverified Commit 619d02a2 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

valkey: 9.0.1 -> 9.0.2 (#486588)

parents de739a1a d3b6651d
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -6250,6 +6250,13 @@
    githubId = 32403873;
    keys = [ { fingerprint = "3EDD 9C88 B0F2 58F8 C25F  5D2C CCBC 8AA1 AF06 2142"; } ];
  };
  debtquity = {
    name = "Darren Rambaud";
    email = "d.nixpkgs@ryz.dev";
    github = "debtquity";
    githubId = 225436867;
    matrix = "@debtquity:matrix.org";
  };
  declan = {
    name = "Declan Rixon";
    email = "declan.fraser.rixon@gmail.com";
+5 −3
Original line number Diff line number Diff line
@@ -25,13 +25,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "valkey";
  version = "9.0.1";
  version = "9.0.2";

  src = fetchFromGitHub {
    owner = "valkey-io";
    repo = "valkey";
    rev = finalAttrs.version;
    hash = "sha256-Y0jJIS2DSJWQJK0Uyzyb/WSHTE/uQZefRidf0hRQwNU=";
    hash = "sha256-r0EbZn2j5QsKnt3PDq0+kTi49OyPQDtIyL8zhKkTP1M=";
  };

  patches = lib.optional useSystemJemalloc ./use_system_jemalloc.patch;
@@ -117,7 +117,9 @@ stdenv.mkDerivation (finalAttrs: {
    description = "High-performance data structure server that primarily serves key/value workloads";
    license = lib.licenses.bsd3;
    platforms = lib.platforms.all;
    maintainers = [ ];
    maintainers = with lib.maintainers; [
      debtquity
    ];
    changelog = "https://github.com/valkey-io/valkey/releases/tag/${finalAttrs.version}";
    mainProgram = "valkey-cli";
  };