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

37 lines
953 B
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, aws-c-io
, aws-checksums, s2n-tls, libexecinfo
2024-05-02 00:46:19 +00:00
# for passthru.tests
2024-05-13 21:24:10 +00:00
, nix }:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation rec {
pname = "aws-c-event-stream";
version = "0.4.2";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
hash = "sha256-wj3PZshUay3HJy+v7cidDL4mDAqSDiX+MmQtJDK4rTI=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ aws-c-cal aws-c-common aws-c-io aws-checksums s2n-tls ]
++ lib.optional stdenv.hostPlatform.isMusl libexecinfo;
2024-05-13 21:24:10 +00:00
cmakeFlags = [ "-DBUILD_SHARED_LIBS:BOOL=ON" ];
2024-05-02 00:46:19 +00:00
# passthru.tests = {
# inherit nix;
# };
meta = with lib; {
2024-05-13 21:24:10 +00:00
description =
"C99 implementation of the vnd.amazon.eventstream content-type";
2024-05-02 00:46:19 +00:00
homepage = "https://github.com/awslabs/aws-c-event-stream";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej eelco ];
};
}