2018-04-26 19:27:41 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig, readline }:
|
2018-04-08 06:24:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pspg";
|
2019-08-05 11:10:29 +01:00
|
|
|
version = "1.6.8";
|
2018-04-08 06:24:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "okbob";
|
|
|
|
repo = "pspg";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2019-08-05 11:10:29 +01:00
|
|
|
sha256 = "1lwzyimn28a7q8k2c8z7and4qhrdil0za8lixh96z6x4lcb0rz5q";
|
2018-04-08 06:24:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-04-26 19:27:41 +01:00
|
|
|
buildInputs = [ gnugrep ncurses readline ];
|
2018-04-08 06:24:34 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|