Merge pull request #117641 from marsam/update-pg_auto_failover

postgresqlPackages.pg_auto_failover: 1.4.2 -> 1.5.1
This commit is contained in:
Mario Rodas 2021-03-28 20:50:31 -05:00 committed by GitHub
commit 632ae0892e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "pg_auto_failover";
version = "1.4.2";
version = "1.5.1";
src = fetchFromGitHub {
owner = "citusdata";
repo = pname;
rev = "v${version}";
sha256 = "030vm83ksfi4daypr4hamvvfs4g1ckww4ldg7rrk6c6hqkppykpa";
sha256 = "14bh3cqkdd1z16iy0lmv8a3f8gmmink1nzhf5jhkd0n6g7r65p6d";
};
buildInputs = [ postgresql openssl zlib readline ];
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "PostgreSQL extension and service for automated failover and high-availability";
homepage = "https://github.com/citusdata/pg_auto_failover";
changelog = "https://github.com/citusdata/pg_auto_failover/raw/v${version}/CHANGELOG.md";
maintainers = [ maintainers.marsam ];
platforms = postgresql.meta.platforms;
license = licenses.postgresql;