aws-c-auth: 0.6.14 -> 0.6.16

main
R. Ryantm 2 years ago committed by Sandro Jäckel
parent c2b4fed7e9
commit b860e79e34
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 12
      pkgs/development/libraries/aws-c-auth/default.nix

@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, aws-c-cal
, aws-c-common
@ -7,18 +8,19 @@
, aws-c-io
, aws-c-sdkutils
, cmake
, nix
, s2n-tls
}:
stdenv.mkDerivation rec {
pname = "aws-c-auth";
version = "0.6.14";
version = "0.6.16";
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-c-auth";
rev = "v${version}";
sha256 = "sha256-Wi1vW0EYgtOltPI5FMhY5je2ZMF9R5ch4nIjENva+FU=";
sha256 = "sha256-JUCnrnJnXDCsdw9UcmujoxZ+cE9PDmqQNHYyvjSVBpw=";
};
nativeBuildInputs = [
@ -42,6 +44,10 @@ stdenv.mkDerivation rec {
"-DBUILD_SHARED_LIBS=ON"
];
passthru.tests = {
inherit nix;
};
meta = with lib; {
description = "C99 library implementation of AWS client-side authentication";
homepage = "https://github.com/awslabs/aws-c-auth";

Loading…
Cancel
Save