nixpkgs/pkgs/tools/misc/pgcenter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
907 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-10-27 12:39:49 +00:00
2019-06-11 20:00:48 +00:00
buildGoModule rec {
2019-03-13 22:48:57 +00:00
pname = "pgcenter";
2021-08-17 13:31:55 +00:00
version = "0.9.2";
2018-10-27 12:39:49 +00:00
src = fetchFromGitHub {
owner = "lesovsky";
repo = "pgcenter";
rev = "v${version}";
2021-08-17 13:31:55 +00:00
sha256 = "sha256-xaY01T12/5Peww9scRgfc5yHj7QA8BEwOK5l6OedziY=";
2018-10-27 12:39:49 +00:00
};
vendorHash = "sha256-9hYiyZ34atmSL7JvuXyiGU7HR4E6qN7bGZlyU+hP+FU=";
2018-10-27 12:39:49 +00:00
2021-02-14 06:00:18 +00:00
subPackages = [ "cmd" ];
2021-08-26 06:45:51 +00:00
ldflags = [ "-w" "-s" "-X main.gitTag=${src.rev}" "-X main.gitCommit=${src.rev}" "-X main.gitBranch=master" ];
2021-02-14 06:00:18 +00:00
postInstall = ''
mv $out/bin/cmd $out/bin/pgcenter
'';
doCheck = false;
meta = with lib; {
homepage = "https://pgcenter.org/";
changelog = "https://github.com/lesovsky/pgcenter/raw/v${version}/doc/Changelog";
2018-10-27 12:39:49 +00:00
description = "Command-line admin tool for observing and troubleshooting PostgreSQL";
license = licenses.bsd3;
2024-04-24 04:20:00 +00:00
maintainers = [ ];
2023-11-27 01:17:53 +00:00
mainProgram = "pgcenter";
2018-10-27 12:39:49 +00:00
};
}