mercury: add maintainer (#350011)

This commit is contained in:
Aleksana 2024-11-23 19:43:48 +08:00 committed by GitHub
commit fc26d5c564
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -23138,6 +23138,12 @@
githubId = 11413574; githubId = 11413574;
name = "Fiona Weber"; name = "Fiona Weber";
}; };
vieta = {
email = "xyzVieta@gmail.com";
github = "yVieta";
githubId = 94648307;
name = "Thanh Viet Nguyen";
};
vifino = { vifino = {
email = "vifino@tty.sh"; email = "vifino@tty.sh";
github = "vifino"; github = "vifino";

View File

@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
changelog = "https://dl.mercurylang.org/release/release-notes-${version}.html"; changelog = "https://dl.mercurylang.org/release/release-notes-${version}.html";
license = lib.licenses.gpl2Only; license = lib.licenses.gpl2Only;
platforms = lib.platforms.all; platforms = lib.platforms.all;
maintainers = [ ]; maintainers = with lib.maintainers; [ vieta ];
}; };
} }