nixpkgs/pkgs/development/libraries/libfido2/default.nix

59 lines
1.5 KiB
Nix
Raw Normal View History

2021-04-25 22:40:04 +01:00
{ lib
, stdenv
2020-03-10 14:40:37 +00:00
, fetchurl
, fetchpatch
, cmake
, pkg-config
, hidapi
2020-03-10 14:40:37 +00:00
, libcbor
, openssl
, udev
2021-04-25 22:40:04 +01:00
, zlib
}:
2019-03-29 15:13:20 +00:00
stdenv.mkDerivation rec {
pname = "libfido2";
2021-04-25 22:40:04 +01:00
version = "1.7.0";
# releases on https://developers.yubico.com/libfido2/Releases/ are signed
2019-03-29 15:13:20 +00:00
src = fetchurl {
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
2021-04-25 22:40:04 +01:00
sha256 = "13khkp2q8g447797l09p83qxy0z8vgmzr54l8dcnapy9lsr4jrqi";
2019-03-29 15:13:20 +00:00
};
2021-04-25 22:40:04 +01:00
patches = [
# fix log truncation
# https://github.com/Yubico/libfido2/issues/318
# https://github.com/Yubico/libfido2/pull/319
(fetchpatch {
url = "https://github.com/Yubico/libfido2/commit/8edb9a204b2f4aeb487e282908c3187f1d02d606.patch";
sha256 = "1i360bghwbdccgkzjfzvhilscnwsj9lhfiviy000n928698l4wan";
})
];
nativeBuildInputs = [ cmake pkg-config ];
2020-03-10 14:40:37 +00:00
2021-04-25 22:40:04 +01:00
buildInputs = [ libcbor openssl zlib ]
++ lib.optionals stdenv.isDarwin [ hidapi ]
++ lib.optionals stdenv.isLinux [ udev ];
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 22:40:04 +01:00
] ++ lib.optionals stdenv.isDarwin [
"-DUSE_HIDAPI=1"
] ++ lib.optionals stdenv.isLinux [
"-DNFC_LINUX=1"
2020-03-10 14:40:37 +00:00
];
2019-03-29 15:13:20 +00:00
meta = with lib; {
2019-03-29 15:13:20 +00:00
description = ''
2021-04-25 22:40:04 +01:00
Provides library functionality for FIDO 2.0, including communication with a device over USB.
2019-03-29 15:13:20 +00:00
'';
homepage = "https://github.com/Yubico/libfido2";
2019-03-29 15:13:20 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ dtzWill prusnak ];
platforms = platforms.unix;
2019-03-29 15:13:20 +00:00
};
}