pam_pgsql: fix build with libxcrypt

authored by Franz Pletz and committed by Martin Weinelt 94e54c61 9fb94a82

+2 -2
+2 -2
pkgs/os-specific/linux/pam_pgsql/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, postgresql, libgcrypt, pam }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, postgresql, libgcrypt, pam, libxcrypt }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pam_pgsql"; ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 - buildInputs = [ libgcrypt pam postgresql ]; 15 + buildInputs = [ libgcrypt pam postgresql libxcrypt ]; 16 16 17 17 meta = with lib; { 18 18 description = "Support to authenticate against PostgreSQL for PAM-enabled appliations";