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

31 lines
1000 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, libcbor, libressl, udev, IOKit }:
2019-03-29 15:13:20 +00:00
stdenv.mkDerivation rec {
pname = "libfido2";
version = "1.3.1";
2019-03-29 15:13:20 +00:00
src = fetchurl {
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
sha256 = "0hdgxbmjbnm9kjwc07nrl2zy87qclvb3rzvdwr5iw35n2qhf4dds";
2019-03-29 15:13:20 +00:00
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libcbor libressl ]
++ stdenv.lib.optionals stdenv.isLinux [ udev ]
++ stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
2019-03-29 15:13:20 +00:00
patches = [ ./detect_apple_ld.patch ];
cmakeFlags = [ "-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
"-DCMAKE_INSTALL_LIBDIR=lib" ];
2019-03-29 15:13:20 +00:00
meta = with stdenv.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 ];
platforms = platforms.unix;
2019-03-29 15:13:20 +00:00
};
}