aboutsummaryrefslogtreecommitdiff
path: root/gradle.lock
Commit message (Collapse)AuthorAgeFilesLines
* Update gradle.lock.J08nY2025-04-161-56/+148
|
* Allow running different versions of OpenSSLquapka2024-06-211-0/+662
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 ```