1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

Merge pull request #198386 from r-ryantm/auto-update/s2n-tls

s2n-tls: 1.3.25 -> 1.3.26
This commit is contained in:
Mario Rodas 2022-10-29 13:55:30 -05:00 committed by GitHub
commit 6ddd77b48f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,25 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, cmake
, openssl
, nix
}:
stdenv.mkDerivation rec {
pname = "s2n-tls";
version = "1.3.25";
version = "1.3.26";
src = fetchFromGitHub {
owner = "aws";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Ugchtv8c+nRFJk4ord7Q8Rqn0bsqJtLb+DV7u/MrCa0=";
sha256 = "sha256-eVqiY/AomnKbN83hSB66EIuGD82Ilx+ybQtBMyX57WY=";
};
nativeBuildInputs = [ cmake ];
outputs = [ "out" "dev"];
outputs = [ "out" "dev" ];
buildInputs = [ openssl ]; # s2n-config has find_dependency(LibCrypto).
@ -39,6 +41,10 @@ stdenv.mkDerivation rec {
done
'';
passthru.tests = {
inherit nix;
};
meta = with lib; {
description = "C99 implementation of the TLS/SSL protocols";
homepage = "https://github.com/aws/s2n-tls";