1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-12 08:01:50 +00:00

Merge pull request #146064 from marsam/update-pg_auto_failover

postgresqlPackages.pg_auto_failover: 1.6.2 -> 1.6.3
This commit is contained in:
Mario Rodas 2021-11-15 23:20:21 -05:00 committed by GitHub
commit 600a7d19c9
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.6.2";
version = "1.6.3";
src = fetchFromGitHub {
owner = "citusdata";
repo = pname;
rev = "v${version}";
sha256 = "158rr0q2y34mjikripz7n61gc3ivj29brxxz4yq72qbz5bd859yj";
sha256 = "sha256-hGpcHV4ai9mxaJ/u/o9LNFWPGsW22W7ak2pbvAUgmwU=";
};
buildInputs = [ postgresql openssl zlib readline libkrb5 ];