Remove OpenSSL tip from readme template

This commit is contained in:
FireFragment 2024-05-16 19:52:05 +02:00 committed by Nicolas Mattia
parent f0dc5a7d49
commit 9ffa3dac85

View file

@ -359,16 +359,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 ];
}
```