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

41 lines
948 B
Nix
Raw Normal View History

{ 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
}:
2019-03-29 15:13:20 +00:00
stdenv.mkDerivation rec {
pname = "libfido2";
2020-09-05 11:16:04 +00:00
version = "1.5.0";
2019-03-29 15:13:20 +00:00
src = fetchurl {
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
2020-09-05 11:16:04 +00:00
sha256 = "08iizxq3w8mpkwfrfpl59csffc20yz8x398bl3kf23rrr4izk42r";
2019-03-29 15:13:20 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2020-03-10 14:40:37 +00:00
buildInputs = [ hidapi libcbor openssl ]
++ lib.optionals stdenv.isLinux [ udev ];
2020-03-10 14:40:37 +00:00
cmakeFlags = [
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
"-DUSE_HIDAPI=1"
2020-03-10 14:40:37 +00:00
"-DCMAKE_INSTALL_LIBDIR=lib"
];
2019-03-29 15:13:20 +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.
'';
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
};
}