pgweb: 0.11.7 -> 0.11.11

This commit is contained in:
Aaron Jheng 2022-05-29 00:33:40 +00:00
parent 413383e9ad
commit f280a5db2b
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,17 +1,24 @@
{ buildGoPackage, fetchFromGitHub, lib }: { buildGoModule, fetchFromGitHub, lib }:
buildGoPackage rec { buildGoModule rec {
pname = "pgweb"; pname = "pgweb";
version = "0.11.7"; version = "0.11.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sosedoff"; owner = "sosedoff";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1df3vixxca80i040apbim80nqni94q882ykn3cglyccyl0iz59ix"; sha256 = "sha256-oKUmBrGxExppJ5y4fZOmMOT5XDMsyMvtE9czotdlMPM=";
}; };
goPackagePath = "github.com/sosedoff/pgweb"; postPatch = ''
# Disable tests require network access.
rm -f pkg/client/{client,dump}_test.go
'';
vendorSha256 = "sha256-Svy0aZKOGL0vrT058szlpS5t7NvzcyRCHRksdmdkckI=";
ldflags = [ "-s" "-w" ];
meta = with lib; { meta = with lib; {
description = "A web-based database browser for PostgreSQL"; description = "A web-based database browser for PostgreSQL";