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-11-29 01:33:14 +00:00
|
|
|
version = "2.6.0";
|
2018-04-08 06:24:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "okbob";
|
2019-10-23 15:51:14 +01:00
|
|
|
repo = pname;
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2019-11-29 01:33:14 +00:00
|
|
|
sha256 = "0cs0hsrrknl2cv39zzq4wydx5p7095hz18yly572fnniyi4ljbdg";
|
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
|
|
|
|
2019-10-23 15:51:14 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2018-04-08 06:24:34 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-10-23 15:51:14 +01:00
|
|
|
homepage = "https://github.com/okbob/pspg";
|
2018-04-08 06:24:34 +01:00
|
|
|
description = "Postgres Pager";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.jlesquembre ];
|
|
|
|
};
|
|
|
|
}
|