Remove OpenSSL tip from README

This commit is contained in:
FireFragment 2024-05-16 19:46:21 +02:00 committed by Nicolas Mattia
parent aa9a011ee3
commit f0dc5a7d49

View file

@ -397,16 +397,3 @@ naersk.buildPackage {
```
([context](https://github.com/nix-community/naersk/pull/288))
### Using OpenSSL
If your application uses OpenSSL (making the build process fail), try:
```nix
naersk.buildPackage {
# ...
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl ];
}
```