3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/aws-c-event-stream/default.nix

31 lines
877 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, aws-c-io, aws-checksums, s2n-tls, libexecinfo }:
2019-02-14 09:09:29 +00:00
stdenv.mkDerivation rec {
pname = "aws-c-event-stream";
2021-03-11 04:28:21 +00:00
version = "0.2.7";
2019-02-14 09:09:29 +00:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
2021-03-11 04:28:21 +00:00
sha256 = "sha256-8Du9Ib3MhPcgetBIi0k1NboaXxZh7iPNhDe7197JnHc=";
2019-02-14 09:09:29 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ aws-c-cal aws-c-common aws-c-io aws-checksums s2n-tls ]
2020-12-26 03:08:34 +00:00
++ lib.optional stdenv.hostPlatform.isMusl libexecinfo;
2019-02-14 09:09:29 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS:BOOL=ON"
2019-02-14 09:09:29 +00:00
];
meta = with lib; {
description = "C99 implementation of the vnd.amazon.eventstream content-type";
homepage = "https://github.com/awslabs/aws-c-event-stream";
2019-02-14 09:09:29 +00:00
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej eelco ];
};
}