nixpkgs/pkgs/tools/misc/pspg/default.nix
2024-04-25 11:08:05 +00:00

33 lines
856 B
Nix

{ lib, stdenv, fetchFromGitHub, gnugrep, ncurses, pkg-config, installShellFiles, readline, postgresql }:
stdenv.mkDerivation rec {
pname = "pspg";
version = "5.8.5";
src = fetchFromGitHub {
owner = "okbob";
repo = pname;
rev = version;
sha256 = "sha256-Lri675TEIVWp8iEQI1oeSd9xNCVtzlUcK2AEJHmWNjs=";
};
nativeBuildInputs = [ pkg-config installShellFiles ];
buildInputs = [ gnugrep ncurses readline postgresql ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
postInstall = ''
installManPage pspg.1
installShellCompletion --bash --cmd pspg bash-completion.sh
'';
meta = with lib; {
homepage = "https://github.com/okbob/pspg";
description = "Postgres Pager";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.jlesquembre ];
mainProgram = "pspg";
};
}