depot/third_party/nixpkgs/pkgs/development/libraries/libfido2/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

40 lines
948 B
Nix

{ lib, stdenv
, fetchurl
, fetchpatch
, cmake
, pkg-config
, hidapi
, libcbor
, openssl
, udev
}:
stdenv.mkDerivation rec {
pname = "libfido2";
version = "1.5.0";
src = fetchurl {
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
sha256 = "08iizxq3w8mpkwfrfpl59csffc20yz8x398bl3kf23rrr4izk42r";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ hidapi libcbor openssl ]
++ lib.optionals stdenv.isLinux [ udev ];
cmakeFlags = [
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
"-DUSE_HIDAPI=1"
"-DCMAKE_INSTALL_LIBDIR=lib"
];
meta = with lib; {
description = ''
Provides library functionality for FIDO 2.0, including communication with a device over USB.
'';
homepage = "https://github.com/Yubico/libfido2";
license = licenses.bsd2;
maintainers = with maintainers; [ dtzWill prusnak ];
platforms = platforms.unix;
};
}