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:
Pavol Rusnak
2020-03-03 13:01:09 +01:00
committed by Frederik Rietdijk
parent c4db4e5538
commit 4707311e20

View File

@@ -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 ];