mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
59 lines
978 B
Nix
59 lines
978 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, aws-c-cal
|
|
, aws-c-common
|
|
, aws-c-compression
|
|
, aws-c-http
|
|
, aws-c-io
|
|
, aws-c-sdkutils
|
|
, cmake
|
|
, nix
|
|
, s2n-tls
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aws-c-auth";
|
|
version = "0.6.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "awslabs";
|
|
repo = "aws-c-auth";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-crqoUXPf+2/bhKvvw6fiKNqozVqczbf+aSlK390/w/Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
aws-c-cal
|
|
aws-c-common
|
|
aws-c-compression
|
|
aws-c-http
|
|
aws-c-io
|
|
s2n-tls
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aws-c-sdkutils
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-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";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ r-burns ];
|
|
};
|
|
}
|