2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, postgresql, openssl } :
|
2017-07-31 03:40:41 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pgmanage";
|
2018-12-22 08:39:15 -08:00
|
|
|
version = "11.0.1";
|
2017-07-31 03:40:41 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-02 12:35:05 -07:00
|
|
|
owner = "pgManage";
|
|
|
|
repo = "pgManage";
|
|
|
|
rev = "v${version}";
|
2018-12-22 08:39:15 -08:00
|
|
|
sha256 = "1a1dbc32b3y0ph8ydf800h6pz7dg6g1gxgid4gffk7k58xj0c5yf";
|
2017-07-31 03:40:41 -07:00
|
|
|
};
|
|
|
|
|
2018-03-01 05:44:25 -08:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs src/configure
|
|
|
|
'';
|
|
|
|
|
2018-03-07 13:28:58 -08:00
|
|
|
configurePhase = ''
|
|
|
|
./configure --prefix $out
|
|
|
|
'';
|
|
|
|
|
2017-07-31 03:40:41 -07:00
|
|
|
buildInputs = [ postgresql openssl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A fast replacement for PGAdmin";
|
|
|
|
longDescription = ''
|
2018-05-09 14:12:55 -07:00
|
|
|
At the heart of pgManage is a modern, fast, event-based C-binary, built in
|
|
|
|
the style of NGINX and Node.js. This heart makes pgManage as fast as any
|
|
|
|
PostgreSQL interface can hope to be. (Note: pgManage replaces Postage,
|
|
|
|
which is no longer maintained.)
|
2017-07-31 03:40:41 -07:00
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pgManage/pgManage";
|
2017-11-02 12:35:05 -07:00
|
|
|
license = licenses.postgresql;
|
2017-07-31 03:40:41 -07:00
|
|
|
maintainers = [ maintainers.basvandijk ];
|
|
|
|
};
|
|
|
|
}
|