nixpkgs/pkgs/development/libraries/aws-c-cal/default.nix

32 lines
770 B
Nix
Raw Normal View History

2021-01-06 09:20:00 +01:00
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, openssl, Security }:
2020-12-26 05:04:58 +01:00
stdenv.mkDerivation rec {
pname = "aws-c-cal";
2021-07-06 11:21:56 +02:00
version = "0.5.11";
2020-12-26 05:04:58 +01:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
2021-07-06 11:21:56 +02:00
sha256 = "sha256-rmEsDsY50IKpCpQTvAFEkgCtuHwwgwMwcRpBUyyZGGc=";
2020-12-26 05:04:58 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ aws-c-common openssl ];
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
2020-12-26 05:04:58 +01:00
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 ];
};
}