Skip to content

Commit

Permalink
Merge pull request #221333 from whentze/patch-1
Browse files Browse the repository at this point in the history
easyrsa: use OpenSSL 1.1.x instead of 3.x
  • Loading branch information
pennae committed Mar 17, 2023
2 parents eabc382 + 8ef95aa commit 2766f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/easyrsa/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, openssl, runtimeShell }:
{ lib, stdenv, fetchFromGitHub, openssl_1_1, runtimeShell }:

let
version = "3.0.8";
Expand All @@ -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
Expand Down

0 comments on commit 2766f77

Please sign in to comment.