valkey: 9.0.1 -> 9.0.2 (#486588)

This commit is contained in:
Sandro
2026-02-04 00:13:35 +00:00
committed by GitHub
2 changed files with 12 additions and 3 deletions
+7
View File
@@ -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
View File
@@ -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";
};