nixpkgs-suyu/pkgs/tools/misc/pspg/default.nix

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

31 lines
804 B
Nix
Raw Normal View History

2021-09-29 17:57:04 +02:00
{ lib, stdenv, fetchFromGitHub, gnugrep, ncurses, pkg-config, installShellFiles, readline, postgresql }:
2018-04-08 07:24:34 +02:00
stdenv.mkDerivation rec {
pname = "pspg";
2022-08-13 22:35:45 +02:00
version = "5.5.6";
2018-04-08 07:24:34 +02:00
src = fetchFromGitHub {
owner = "okbob";
repo = pname;
2019-09-09 01:38:31 +02:00
rev = version;
2022-08-13 22:35:45 +02:00
sha256 = "sha256-99EuWSNW9e5/GyiR3JwDNFTAOJpaGCJKmxt340bjPrA=";
2018-04-08 07:24:34 +02:00
};
2021-09-29 17:57:04 +02:00
nativeBuildInputs = [ pkg-config installShellFiles ];
2020-01-21 10:20:00 +01:00
buildInputs = [ gnugrep ncurses readline postgresql ];
2018-04-08 07:24:34 +02:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2018-04-08 07:24:34 +02:00
2021-09-29 17:57:04 +02:00
postInstall = ''
2021-10-20 03:51:20 +02:00
installShellCompletion --bash --cmd pspg bash-completion.sh
2021-09-29 17:57:04 +02:00
'';
meta = with lib; {
homepage = "https://github.com/okbob/pspg";
2018-04-08 07:24:34 +02:00
description = "Postgres Pager";
license = licenses.bsd2;
2020-01-21 10:20:00 +01:00
platforms = platforms.unix;
2018-04-08 07:24:34 +02:00
maintainers = [ maintainers.jlesquembre ];
};
}