From c86ee97f3b078af2cd6be7e95a0e83ecf197ac44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Sun, 21 May 2023 13:13:41 -0500 Subject: [PATCH] pgweb: 0.11.11 -> 0.14.0 --- maintainers/maintainer-list.nix | 7 +++++++ pkgs/development/tools/database/pgweb/default.nix | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index f639dc7ab21f..868bd4e4d324 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9357,6 +9357,13 @@ githubId = 22085373; name = "Luis Hebendanz"; }; + luisnquin = { + email = "lpaandres2020@gmail.com"; + matrix = "@luisnquin:matrix.org"; + github = "luisnquin"; + githubId = 86449787; + name = "Luis QuiƱones"; + }; luispedro = { email = "luis@luispedro.org"; github = "luispedro"; diff --git a/pkgs/development/tools/database/pgweb/default.nix b/pkgs/development/tools/database/pgweb/default.nix index 7cdf913736a6..f93c2de7b547 100644 --- a/pkgs/development/tools/database/pgweb/default.nix +++ b/pkgs/development/tools/database/pgweb/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "pgweb"; - version = "0.13.1"; + version = "0.14.0"; src = fetchFromGitHub { owner = "sosedoff"; repo = pname; rev = "v${version}"; - sha256 = "sha256-+sU+kNTOv78g4mvynXoIyNtmeIDxzfAs4Kr/Lx9zfiU="; + sha256 = "sha256-NPuL7ffDLpnu0khJBIz+tItYyeHYPeOuTHXr4DjBgM0="; }; postPatch = '' @@ -28,6 +28,6 @@ buildGoModule rec { ''; homepage = "https://sosedoff.github.io/pgweb/"; license = licenses.mit; - maintainers = with maintainers; [ zupo ]; + maintainers = with maintainers; [ zupo luisnquin ]; }; }