| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently, only running different versions of OpenSSL is implemented as
PoC to see if it would work. You can either build it or run it directly
with:
```
$ nix run '.?submodules=1#openssl_316' list-libs # uses OpenSSL 3.1.6
$ nix run '.?submodules=1#openssl_322' list-libs # uses OpenSSL 3.2.2
$ nix run '.?submodules=1' list-libs # uses OpenSSL 3.3.1
```
Adding new versions is possible, check `packages` part of `flake.nix`.
To see the supported versions run:
```
$ nix flake show
```
|