2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2020-03-10 14:40:37 +00:00
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, cmake
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2020-04-18 18:32:05 +01:00
|
|
|
, hidapi
|
2020-03-10 14:40:37 +00:00
|
|
|
, libcbor
|
|
|
|
, openssl
|
|
|
|
, udev
|
2020-04-18 18:32:05 +01:00
|
|
|
}:
|
2019-03-29 15:13:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libfido2";
|
2020-09-05 12:16:04 +01:00
|
|
|
version = "1.5.0";
|
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";
|
2020-09-05 12:16:04 +01:00
|
|
|
sha256 = "08iizxq3w8mpkwfrfpl59csffc20yz8x398bl3kf23rrr4izk42r";
|
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
|
|
|
|
2020-04-18 18:32:05 +01:00
|
|
|
buildInputs = [ hidapi libcbor openssl ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ udev ];
|
2020-02-23 15:59:41 +00:00
|
|
|
|
2020-03-10 14:40:37 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
2020-04-18 18:32:05 +01:00
|
|
|
"-DUSE_HIDAPI=1"
|
2020-03-10 14:40:37 +00:00
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
];
|
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 = ''
|
|
|
|
Provides library functionality for FIDO 2.0, including communication with a device over USB.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01: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
|
|
|
};
|
|
|
|
}
|