Merge pull request #150790 from ysndr/gotypist

gotypist: fix maintainer metadata
This commit is contained in:
Bobby Rong 2021-12-15 17:57:59 +08:00 committed by GitHub
commit 840dafd162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -9044,6 +9044,12 @@
githubId = 116740; githubId = 116740;
name = "Paweł Pacana"; name = "Paweł Pacana";
}; };
pb- = {
email = "pbaecher@gmail.com";
github = "pb-";
githubId = 84886;
name = "Paul Baecher";
};
pbogdan = { pbogdan = {
email = "ppbogdan@gmail.com"; email = "ppbogdan@gmail.com";
github = "pbogdan"; github = "pbogdan";

View file

@ -21,6 +21,6 @@ buildGoModule rec {
''; '';
homepage = "https://github.com/pb-/gotypist"; homepage = "https://github.com/pb-/gotypist";
license = licenses.mit; license = licenses.mit;
maintainers = [ "Paul Baecher" ]; maintainers = with maintainers; [ pb- ];
}; };
} }