Unverified Commit 86f9361e authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

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

postgresql11Packages.pg_auto_failover: fix build on Linux
parents 21e35322 bf960aa6
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