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