Rust: Difference between revisions

imported>Samuela
No edit summary
imported>FliegendeWurst
nix-shell example for openssl-sys
Line 79: Line 79:
== FAQ ==
== FAQ ==
=== Building the openssl-sys crate ===
=== Building the openssl-sys crate ===
You'll need to have the <code>openssl</code> and <code>pkg-config</code> derivatives in order to build <code>openssl-sys</code> crate.
You'll need to have the <code>openssl</code> and <code>pkg-config</code> derivatives in order to build <code>openssl-sys</code> crate. For example, you can start a shell providing these packages:
<syntaxHighlight lang=console>
$ nix-shell -p pkg-config openssl
</syntaxHighlight>