nixpkgs-suyu/pkgs/development/libraries/aws-c-auth/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
978 B
Nix
Raw Normal View History

2022-09-04 08:28:16 +02:00
{ lib
, stdenv
2021-09-25 20:26:00 +02:00
, fetchFromGitHub
, aws-c-cal
, aws-c-common
, aws-c-compression
, aws-c-http
, aws-c-io
2021-10-18 10:23:42 +02:00
, aws-c-sdkutils
2021-09-25 20:26:00 +02:00
, cmake
2022-09-04 08:28:16 +02:00
, nix
2021-09-25 20:26:00 +02:00
, s2n-tls
}:
stdenv.mkDerivation rec {
pname = "aws-c-auth";
version = "0.6.20";
2021-09-25 20:26:00 +02:00
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-c-auth";
rev = "v${version}";
sha256 = "sha256-d6o+ClQMhoSU8wjdP0nr+g6r4ZqzXhxBJcEfTOSlS7o=";
2021-09-25 20:26:00 +02:00
};
nativeBuildInputs = [
cmake
];
buildInputs = [
aws-c-cal
aws-c-common
aws-c-compression
aws-c-http
aws-c-io
s2n-tls
];
2021-10-18 10:23:42 +02:00
propagatedBuildInputs = [
aws-c-sdkutils
];
2021-09-25 20:26:00 +02:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];
2022-09-04 08:28:16 +02:00
passthru.tests = {
inherit nix;
};
2021-09-25 20:26:00 +02:00
meta = with lib; {
description = "C99 library implementation of AWS client-side authentication";
homepage = "https://github.com/awslabs/aws-c-auth";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ r-burns ];
};
}