mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #81613 from prusnak/libfido2
libfido2: change dependency from libressl to openssl
This commit is contained in:
commit
d847032478
1 changed files with 33 additions and 6 deletions
|
@ -1,4 +1,12 @@
|
|||
{ stdenv, fetchurl, cmake, pkgconfig, libcbor, libressl, udev, IOKit }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, cmake
|
||||
, pkgconfig
|
||||
, libcbor
|
||||
, openssl
|
||||
, udev
|
||||
, IOKit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libfido2";
|
||||
|
@ -9,14 +17,33 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ libcbor libressl ]
|
||||
|
||||
buildInputs = [ libcbor openssl ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ udev ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
|
||||
|
||||
patches = [ ./detect_apple_ld.patch ];
|
||||
patches = [
|
||||
# fix build on darwin
|
||||
(fetchpatch {
|
||||
url = "https://github.com/Yubico/libfido2/commit/916ebd18a89e4028de203d603726805339be7a5b.patch";
|
||||
sha256 = "07f0xpxnq02cccmqcric87b6pms7k7ssvdw722zr970a6qs8p6i7";
|
||||
})
|
||||
# allow attestation using any supported algorithm
|
||||
(fetchpatch {
|
||||
url = "https://github.com/Yubico/libfido2/commit/f7a9471fa0588cb91cbefffb13c1e4d06c2179b7.patch";
|
||||
sha256 = "02qbw9bqy3sixvwig6az7v3vimgznxnfikn9p1jczm3d7mn8asw2";
|
||||
})
|
||||
# fix EdDSA attestation signature verification bug
|
||||
(fetchpatch {
|
||||
url = "https://github.com/Yubico/libfido2/commit/95126eea52294419515e6540dfd7220f35664c48.patch";
|
||||
sha256 = "076mwpl9xndjhy359jdv2drrwyq7wd3pampkn28mn1rlwxfgf0d0";
|
||||
})
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
||||
"-DCMAKE_INSTALL_LIBDIR=lib" ];
|
||||
cmakeFlags = [
|
||||
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
||||
"-DCMAKE_INSTALL_LIBDIR=lib"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''
|
||||
|
@ -24,7 +51,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
homepage = https://github.com/Yubico/libfido2;
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
maintainers = with maintainers; [ dtzWill prusnak ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue