openssl: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 13:58:29 -07:00
parent e949a91d02
commit 2429bed692
No known key found for this signature in database

View File

@ -227,19 +227,19 @@ let
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; { meta = {
homepage = "https://www.openssl.org/"; homepage = "https://www.openssl.org/";
changelog = "https://github.com/openssl/openssl/blob/openssl-${version}/CHANGES.md"; changelog = "https://github.com/openssl/openssl/blob/openssl-${version}/CHANGES.md";
description = "Cryptographic library that implements the SSL and TLS protocols"; description = "Cryptographic library that implements the SSL and TLS protocols";
license = licenses.openssl; license = lib.licenses.openssl;
mainProgram = "openssl"; mainProgram = "openssl";
maintainers = with maintainers; [ thillux ] ++ lib.teams.stridtech.members; maintainers = with lib.maintainers; [ thillux ] ++ lib.teams.stridtech.members;
pkgConfigModules = [ pkgConfigModules = [
"libcrypto" "libcrypto"
"libssl" "libssl"
"openssl" "openssl"
]; ];
platforms = platforms.all; platforms = lib.platforms.all;
} // extraMeta; } // extraMeta;
}); });
@ -295,8 +295,8 @@ in {
withDocs = true; withDocs = true;
extraMeta = with lib; { extraMeta = {
license = licenses.asl20; license = lib.licenses.asl20;
}; };
}; };
@ -320,8 +320,8 @@ in {
withDocs = true; withDocs = true;
extraMeta = with lib; { extraMeta = {
license = licenses.asl20; license = lib.licenses.asl20;
}; };
}; };
@ -345,8 +345,8 @@ in {
withDocs = true; withDocs = true;
extraMeta = with lib; { extraMeta = {
license = licenses.asl20; license = lib.licenses.asl20;
}; };
}; };
} }