Unverified Commit e2f79222 authored by Vladimír Čunát's avatar Vladimír Čunát Committed by GitHub
Browse files

openssl_4_0: init at 4.0.0 (#509987)

parents 522b6a77 9ef1da31
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
@@ -378,6 +378,9 @@ let

      passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;

      strictDeps = lib.versionAtLeast version "4.0";
      __structuredAttrs = lib.versionAtLeast version "4.0";

      meta = {
        homepage = "https://www.openssl.org/";
        changelog = "https://github.com/openssl/openssl/blob/openssl-${version}/CHANGES.md";
@@ -536,4 +539,33 @@ in
      license = lib.licenses.asl20;
    };
  };

  openssl_4_0 = common {
    version = "4.0.0";
    hash = "sha256-wyz0mpWcTzRflgaYLdNufSj3xYsZwuJddWJNKz0veaw=";

    patches = [
      # Support for NIX_SSL_CERT_FILE, motivation:
      # https://github.com/NixOS/nixpkgs/commit/942dbf89c6120cb5b52fb2ab456855d1fbf2994e
      ./3.0/nix-ssl-cert-file.patch

      # openssl will only compile in KTLS if the current kernel supports it.
      # This patch disables build-time detection.
      ./3.0/openssl-disable-kernel-detection.patch

      # Look up SSL certificates in /etc rather than the immutable installation directory
      (
        if stdenv.hostPlatform.isDarwin then
          ./3.5/use-etc-ssl-certs-darwin.patch
        else
          ./3.5/use-etc-ssl-certs.patch
      )
    ];

    withDocs = true;

    extraMeta = {
      license = lib.licenses.asl20;
    };
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -7120,6 +7120,7 @@ with pkgs;
    openssl_3
    openssl_3_5
    openssl_3_6
    openssl_4_0
    ;

  pcre = callPackage ../development/libraries/pcre { };