core/pkgs/by-name/aw/aws-c-cal/default.nix

38 lines
958 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, nix, openssl, Security }:
stdenv.mkDerivation (finalAttrs: {
pname = "aws-c-cal";
version = "0.6.10";
src = fetchFromGitHub {
owner = "awslabs";
repo = finalAttrs.pname;
rev = "v${finalAttrs.version}";
hash = "sha256-rzJypIf0DrKI/2Wt5vFop34dL+KYTeCfWC0RflZpiMo=";
};
patches = [
# Fix openssl adaptor code for musl based static binaries.
./aws-c-cal-musl-compat.patch
];
nativeBuildInputs = [ cmake ];
buildInputs = [ aws-c-common openssl ];
2024-05-13 21:24:10 +00:00
propagatedBuildInputs =
lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
passthru.tests = { inherit nix; };
2024-05-02 00:46:19 +00:00
meta = with lib; {
description = "AWS Crypto Abstraction Layer ";
homepage = "https://github.com/awslabs/aws-c-cal";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
})