2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
cmake,
|
|
|
|
pkg-config,
|
|
|
|
hidapi,
|
|
|
|
libcbor,
|
|
|
|
openssl,
|
|
|
|
udev,
|
|
|
|
zlib,
|
|
|
|
withPcsclite ? true,
|
|
|
|
pcsclite,
|
2024-05-02 00:46:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libfido2";
|
|
|
|
version = "1.14.0";
|
|
|
|
|
|
|
|
# releases on https://developers.yubico.com/libfido2/Releases/ are signed
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-NgF5LjIAMtQoACxMzoSZpMe4AzGQUaJaDJ8fE4/+5Fo=";
|
|
|
|
};
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
buildInputs =
|
|
|
|
[
|
|
|
|
libcbor
|
|
|
|
zlib
|
|
|
|
]
|
2024-05-02 00:46:19 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ hidapi ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ udev ]
|
|
|
|
++ lib.optionals (stdenv.isLinux && withPcsclite) [ pcsclite ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"dev"
|
|
|
|
"man"
|
2024-05-02 00:46:19 +00:00
|
|
|
];
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
cmakeFlags =
|
|
|
|
[
|
|
|
|
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "-DUSE_HIDAPI=1" ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ "-DNFC_LINUX=1" ]
|
|
|
|
++ lib.optionals (stdenv.isLinux && withPcsclite) [ "-DUSE_PCSC=1" ];
|
|
|
|
|
2024-05-02 00:46:19 +00:00
|
|
|
# causes possible redefinition of _FORTIFY_SOURCE?
|
|
|
|
hardeningDisable = [ "fortify3" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = ''
|
|
|
|
Provides library functionality for FIDO 2.0, including communication with a device over USB.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/Yubico/libfido2";
|
|
|
|
license = licenses.bsd2;
|
2024-06-30 08:16:52 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
dtzWill
|
|
|
|
prusnak
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|