Merge pull request #308082 from anmonteiro/anmonteiro/openssl-3.3.0

openssl_3_3: init at 3.3.0
This commit is contained in:
Ulrik Strid 2024-05-01 08:56:02 +02:00 committed by GitHub
commit ae1852e70d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 25 additions and 1 deletions

View File

@ -309,4 +309,27 @@ in {
license = licenses.asl20;
};
};
openssl_3_3 = common {
version = "3.3.0";
hash = "sha256-U+ZrBDMipgar8Ah+dpmg4DOjf6E/65dC3zXDozsY+wI=";
patches = [
./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
(if stdenv.hostPlatform.isDarwin
then ./3.2/use-etc-ssl-certs-darwin.patch
else ./3.2/use-etc-ssl-certs.patch)
];
withDocs = true;
extraMeta = with lib; {
license = licenses.asl20;
};
};
}

View File

@ -23811,7 +23811,8 @@ with pkgs;
inherit (callPackages ../development/libraries/openssl { })
openssl_1_1
openssl_3
openssl_3_2;
openssl_3_2
openssl_3_3;
opensubdiv = callPackage ../development/libraries/opensubdiv { };