Unverified Commit 6ddd77b4 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

s2n-tls: 1.3.25 -> 1.3.26
parents 1e8bea25 124be496
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
{ 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 ];
@@ -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";