mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
34 lines
863 B
Nix
34 lines
863 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "pgweb";
|
|
version = "0.13.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sosedoff";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+sU+kNTOv78g4mvynXoIyNtmeIDxzfAs4Kr/Lx9zfiU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Disable tests require network access.
|
|
rm -f pkg/client/{client,dump}_test.go
|
|
'';
|
|
|
|
vendorSha256 = "sha256-W+Vybea4oppD4BHRqcyouQL79cF+y+sONY9MRggti20=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "A web-based database browser for PostgreSQL";
|
|
longDescription = ''
|
|
A simple postgres browser that runs as a web server. You can view data,
|
|
run queries and examine tables and indexes.
|
|
'';
|
|
homepage = "https://sosedoff.github.io/pgweb/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zupo ];
|
|
};
|
|
}
|