Commit bf960aa6 authored by Mario Rodas's avatar Mario Rodas
Browse files

postgresql11Packages.pg_auto_failover: fix build on Linux

ZHF: #230712
parent 5278c612
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
{ 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