mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
310e86a834
* add setup hook for interface cmake module * sba_metrics fails on musl
32 lines
770 B
Nix
32 lines
770 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, openssl, Security }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aws-c-cal";
|
|
version = "0.5.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "awslabs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-rmEsDsY50IKpCpQTvAFEkgCtuHwwgwMwcRpBUyyZGGc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ aws-c-common openssl ];
|
|
|
|
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|