maintainers: add debtquity

* add self to `mainatiners-list.nix`
* no maintainers for `valkey`, add handle to `meta.maintainers`
This commit is contained in:
Darren Rambaud
2026-02-03 09:36:20 -06:00
parent 0b20156f85
commit d3b6651d6f
2 changed files with 10 additions and 1 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";
+3 -1
View File
@@ -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";
};