lol

oath-toolkit: fix darwin build by disabling pam (#130301)

authored by

Artturi and committed by
GitHub
d3ebf3bf ff327f36

+3
+3
pkgs/tools/security/oath-toolkit/default.nix
··· 1 1 { lib, stdenv, fetchurl, pam, xmlsec }: 2 2 3 3 let 4 + # TODO: Switch to OpenPAM once https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/26 is addressed upstream 4 5 securityDependency = 5 6 if stdenv.isDarwin then xmlsec 6 7 else pam; ··· 15 16 }; 16 17 17 18 buildInputs = [ securityDependency ]; 19 + 20 + configureFlags = lib.optionals stdenv.isDarwin [ "--disable-pam" ]; 18 21 19 22 passthru.updateScript = ./update.sh; 20 23