diff --git a/README.tpl.md b/README.tpl.md index 45e515d..6effdc9 100644 --- a/README.tpl.md +++ b/README.tpl.md @@ -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 ]; -} -```