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

29 lines
710 B
Nix
Raw Normal View History

2018-04-26 21:27:41 +03:00
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig, readline }:
2018-04-08 08:24:34 +03:00
stdenv.mkDerivation rec {
name = "pspg-${version}";
version = "1.4.2";
2018-04-08 08:24:34 +03:00
src = fetchFromGitHub {
owner = "okbob";
repo = "pspg";
rev = "${version}";
sha256 = "0hmx9p5pbydnf8sil4vqpmly5mq2rvcj8a33s9fvfisnxxsqz73v";
2018-04-08 08:24:34 +03:00
};
nativeBuildInputs = [ pkgconfig ];
2018-04-26 21:27:41 +03:00
buildInputs = [ gnugrep ncurses readline ];
2018-04-08 08:24:34 +03:00
preBuild = ''
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
'';
meta = with stdenv.lib; {
homepage = https://github.com/okbob/pspg;
description = "Postgres Pager";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ maintainers.jlesquembre ];
};
}