pam: add audit dependency

This allows building the pam_tty_audit module, among others

+2 -2
+2 -2
pkgs/os-specific/linux/pam/default.nix
··· 1 - { lib, stdenv, buildPackages, fetchurl, flex, cracklib, db4, gettext 1 + { lib, stdenv, buildPackages, fetchurl, flex, cracklib, db4, gettext, audit 2 2 , nixosTests 3 3 , withLibxcrypt ? false, libxcrypt 4 4 }: ··· 18 18 nativeBuildInputs = [ flex ] 19 19 ++ lib.optional stdenv.buildPlatform.isDarwin gettext; 20 20 21 - buildInputs = [ cracklib db4 ] 21 + buildInputs = [ cracklib db4 audit ] 22 22 ++ lib.optional withLibxcrypt libxcrypt; 23 23 24 24 enableParallelBuilding = true;