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 2 , nixosTests 3 , withLibxcrypt ? false, libxcrypt 4 }: ··· 18 nativeBuildInputs = [ flex ] 19 ++ lib.optional stdenv.buildPlatform.isDarwin gettext; 20 21 - buildInputs = [ cracklib db4 ] 22 ++ lib.optional withLibxcrypt libxcrypt; 23 24 enableParallelBuilding = true;
··· 1 + { lib, stdenv, buildPackages, fetchurl, flex, cracklib, db4, gettext, audit 2 , nixosTests 3 , withLibxcrypt ? false, libxcrypt 4 }: ··· 18 nativeBuildInputs = [ flex ] 19 ++ lib.optional stdenv.buildPlatform.isDarwin gettext; 20 21 + buildInputs = [ cracklib db4 audit ] 22 ++ lib.optional withLibxcrypt libxcrypt; 23 24 enableParallelBuilding = true;