pam_u2f: 1.3.1 -> 1.3.2 (#374776)

This commit is contained in:
Peder Bergebakken Sundt 2025-02-15 00:48:30 +01:00 committed by GitHub
commit c4bea8f7f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,15 +6,16 @@
libfido2,
pam,
openssl,
nixosTests,
}:
stdenv.mkDerivation rec {
pname = "pam_u2f";
version = "1.3.1";
version = "1.3.2";
src = fetchurl {
url = "https://developers.yubico.com/pam-u2f/Releases/${pname}-${version}.tar.gz";
hash = "sha256-mhNUmUf4RPazq2kdca+09vAKRdFl/tJ7AcZsB3UKk4c=";
hash = "sha256-OL59GJcnHLP+45HSODs1r8EmrUMakanebpkQjBLMlJA=";
};
nativeBuildInputs = [ pkg-config ];
@ -36,6 +37,10 @@ stdenv.mkDerivation rec {
EOF
'';
passthru.tests = {
pam_u2f = nixosTests.pam-u2f;
};
meta = with lib; {
homepage = "https://developers.yubico.com/pam-u2f/";
description = "PAM module for allowing authentication with a U2F device";