Unverified Commit 6cec999b authored by John Ericson's avatar John Ericson Committed by GitHub
Browse files

pam: Use freebsd.pam on FreeBSD (#362689)

parents bce6f852 45691701
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -12562,7 +12562,13 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  pam = if stdenv.hostPlatform.isLinux then linux-pam else openpam;
  pam =
    if stdenv.hostPlatform.isLinux then
      linux-pam
    else if stdenv.hostPlatform.isFreeBSD then
      freebsd.libpam
    else
      openpam;
  # pam_bioapi ( see http://www.thinkwiki.org/wiki/How_to_enable_the_fingerprint_reader )