2021-04-25 23:40:04 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-03-10 15:40:37 +01:00
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2021-01-19 07:50:56 +01:00
|
|
|
, pkg-config
|
2020-04-18 19:32:05 +02:00
|
|
|
, hidapi
|
2020-03-10 15:40:37 +01:00
|
|
|
, libcbor
|
|
|
|
, openssl
|
|
|
|
, udev
|
2021-04-25 23:40:04 +02:00
|
|
|
, zlib
|
2022-10-26 03:29:25 +02:00
|
|
|
, withPcsclite ? true
|
2022-07-03 23:29:56 +02:00
|
|
|
, pcsclite
|
2020-04-18 19:32:05 +02:00
|
|
|
}:
|
2019-03-29 16:13:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libfido2";
|
2023-11-14 10:13:28 +01:00
|
|
|
version = "1.14.0";
|
2021-04-25 23:40:04 +02:00
|
|
|
|
|
|
|
# releases on https://developers.yubico.com/libfido2/Releases/ are signed
|
2019-03-29 16:13:20 +01:00
|
|
|
src = fetchurl {
|
2019-11-29 04:18:47 +01:00
|
|
|
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
|
2023-11-14 10:13:28 +01:00
|
|
|
sha256 = "sha256-NgF5LjIAMtQoACxMzoSZpMe4AzGQUaJaDJ8fE4/+5Fo=";
|
2019-03-29 16:13:20 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-03-10 15:40:37 +01:00
|
|
|
|
2022-08-01 08:28:10 +02:00
|
|
|
buildInputs = [ libcbor zlib ]
|
2021-04-25 23:40:04 +02:00
|
|
|
++ lib.optionals stdenv.isDarwin [ hidapi ]
|
2022-10-26 03:29:25 +02:00
|
|
|
++ lib.optionals stdenv.isLinux [ udev ]
|
|
|
|
++ lib.optionals (stdenv.isLinux && withPcsclite) [ pcsclite ];
|
2020-02-23 16:59:41 +01:00
|
|
|
|
2022-08-01 08:28:10 +02:00
|
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
|
2022-09-18 12:14:06 +02:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2020-03-10 15:40:37 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
2021-04-25 23:40:04 +02:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
"-DUSE_HIDAPI=1"
|
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
"-DNFC_LINUX=1"
|
2022-10-26 03:29:25 +02:00
|
|
|
] ++ lib.optionals (stdenv.isLinux && withPcsclite) [
|
2022-07-03 23:29:56 +02:00
|
|
|
"-DUSE_PCSC=1"
|
2020-03-10 15:40:37 +01:00
|
|
|
];
|
2019-03-29 16:13:20 +01:00
|
|
|
|
2023-06-28 21:08:27 +02:00
|
|
|
# causes possible redefinition of _FORTIFY_SOURCE?
|
|
|
|
hardeningDisable = [ "fortify3" ];
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2019-03-29 16:13:20 +01:00
|
|
|
description = ''
|
2021-04-25 23:40:04 +02:00
|
|
|
Provides library functionality for FIDO 2.0, including communication with a device over USB.
|
2019-03-29 16:13:20 +01:00
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/Yubico/libfido2";
|
2019-03-29 16:13:20 +01:00
|
|
|
license = licenses.bsd2;
|
2020-03-03 13:01:09 +01:00
|
|
|
maintainers = with maintainers; [ dtzWill prusnak ];
|
2020-02-23 16:59:41 +01:00
|
|
|
platforms = platforms.unix;
|
2019-03-29 16:13:20 +01:00
|
|
|
};
|
|
|
|
}
|