Merge pull request #231759 from marsam/fix-pg_auto_failover-build

postgresql11Packages.pg_auto_failover: fix build on Linux
This commit is contained in:
Martin Weinelt 2023-05-14 03:19:25 +02:00 committed by GitHub
commit 86f9361e50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, postgresql, openssl, zlib, readline, libkrb5 }:
{ lib, stdenv, fetchFromGitHub, postgresql, openssl, zlib, readline, libkrb5, libxcrypt }:
stdenv.mkDerivation rec {
pname = "pg_auto_failover";
@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-CLtLOzKRB9p6+SytMvWCYo7m7s/d+clAGOa2sWi6uZ0=";
};
buildInputs = [ postgresql openssl zlib readline libkrb5 ];
buildInputs = [ postgresql openssl zlib readline libkrb5 ]
++ lib.optionals (stdenv.isLinux && lib.versionOlder postgresql.version "13") [ libxcrypt ];
installPhase = ''
install -D -t $out/bin src/bin/pg_autoctl/pg_autoctl