pounce: replace libressl with libretls
pounce cannot find the system ca store using latest libressl:
pounce: tls_connect: failed to open CA file 'etc/ssl/cert.pem': No such file or directory
The solution here is the same one taken by the catgirl package, see bcff49197e.
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
libressl,
|
libretls,
|
||||||
|
openssl,
|
||||||
fetchzip,
|
fetchzip,
|
||||||
pkg-config,
|
pkg-config,
|
||||||
libxcrypt,
|
libxcrypt,
|
||||||
@@ -17,7 +18,8 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libressl
|
libretls
|
||||||
|
openssl
|
||||||
libxcrypt
|
libxcrypt
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user