diff options
| author | pennae <82953136+pennae@users.noreply.github.com> | 2023-03-17 11:19:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-17 11:19:23 +0100 |
| commit | 2766f77c32e171a04d59b636a91083bae862274e (patch) | |
| tree | 901b097c3a7c947e18fa2cf9e8cabd4cf3756904 | |
| parent | eabc38219184cc3e04a974fe31857d8e0eac098d (diff) | |
| parent | 8ef95aab402d2df12ee3dead2791aac338833acd (diff) | |
Merge pull request #221333 from whentze/patch-1release-21.11
easyrsa: use OpenSSL 1.1.x instead of 3.x
| -rw-r--r-- | pkgs/tools/networking/easyrsa/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/easyrsa/default.nix b/pkgs/tools/networking/easyrsa/default.nix index 34e326858fdc..c183bed7fd60 100644 --- a/pkgs/tools/networking/easyrsa/default.nix +++ b/pkgs/tools/networking/easyrsa/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, openssl, runtimeShell }: +{ lib, stdenv, fetchFromGitHub, openssl_1_1, runtimeShell }: let version = "3.0.8"; @@ -22,7 +22,7 @@ in stdenv.mkDerivation { install -D -m755 easyrsa3/easyrsa $out/bin/easyrsa substituteInPlace $out/bin/easyrsa \ --subst-var out \ - --subst-var-by openssl ${openssl.bin}/bin/openssl + --subst-var-by openssl ${openssl_1_1.bin}/bin/openssl # Helper utility cat > $out/bin/easyrsa-init <<EOF |
