mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 02:05:02 +00:00
libfido2: change dependency from libressl to openssl
libressl does not enable EdDSA functionality in libfido2 see https://github.com/Yubico/libfido2/issues/144 (cherry picked from commit 4135584798e428a98d0ded9dab337673bd048f05)
This commit is contained in:
committed by
Frederik Rietdijk
parent
c4db4e5538
commit
4707311e20
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cmake, pkgconfig, libcbor, libressl, udev, IOKit }:
|
||||
{ stdenv, fetchurl, cmake, pkgconfig, libcbor, openssl, udev, IOKit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libfido2";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ libcbor libressl ]
|
||||
buildInputs = [ libcbor openssl ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ udev ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user