31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, postgresql, openssl, zlib, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pg_auto_failover";
|
|
version = "1.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "citusdata";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1idlgqazr2qra5x702f2yjcl99zwm1i5fi84paplfy98i5jjmxm1";
|
|
};
|
|
|
|
buildInputs = [ postgresql openssl zlib readline ];
|
|
|
|
installPhase = ''
|
|
install -D -t $out/bin src/bin/pg_autoctl/pg_autoctl
|
|
install -D -t $out/lib src/monitor/pgautofailover.so
|
|
install -D -t $out/share/postgresql/extension src/monitor/*.sql
|
|
install -D -t $out/share/postgresql/extension src/monitor/pgautofailover.control
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "PostgreSQL extension and service for automated failover and high-availability";
|
|
homepage = "https://github.com/citusdata/pg_auto_failover";
|
|
maintainers = [ maintainers.marsam ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.postgresql;
|
|
broken = versionOlder postgresql.version "10";
|
|
};
|
|
}
|