2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, postgresql, openssl } :
|
2017-07-31 13:40:41 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "pgmanage";
|
2018-12-22 19:39:15 +03:00
|
|
|
version = "11.0.1";
|
2017-07-31 13:40:41 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-02 22:35:05 +03:00
|
|
|
owner = "pgManage";
|
|
|
|
repo = "pgManage";
|
|
|
|
rev = "v${version}";
|
2018-12-22 19:39:15 +03:00
|
|
|
sha256 = "1a1dbc32b3y0ph8ydf800h6pz7dg6g1gxgid4gffk7k58xj0c5yf";
|
2017-07-31 13:40:41 +03:00
|
|
|
};
|
|
|
|
|
2018-03-01 16:44:25 +03:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs src/configure
|
|
|
|
'';
|
|
|
|
|
2018-03-08 00:28:58 +03:00
|
|
|
configurePhase = ''
|
|
|
|
./configure --prefix $out
|
|
|
|
'';
|
|
|
|
|
2017-07-31 13:40:41 +03:00
|
|
|
buildInputs = [ postgresql openssl ];
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2017-07-31 13:40:41 +03:00
|
|
|
description = "A fast replacement for PGAdmin";
|
|
|
|
longDescription = ''
|
2018-05-10 00:12:55 +03: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 13:40:41 +03:00
|
|
|
'';
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/pgManage/pgManage";
|
2017-11-02 22:35:05 +03:00
|
|
|
license = licenses.postgresql;
|
2017-07-31 13:40:41 +03:00
|
|
|
maintainers = [ maintainers.basvandijk ];
|
|
|
|
};
|
|
|
|
}
|