Merge pull request #189685 from r-ryantm/auto-update/aws-c-event-stream
This commit is contained in:
commit
8888f32cac
1 changed files with 7 additions and 3 deletions
|
@ -1,14 +1,14 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, aws-c-io, aws-checksums, s2n-tls, libexecinfo }:
|
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, aws-c-io, aws-checksums, nix, s2n-tls, libexecinfo }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "aws-c-event-stream";
|
pname = "aws-c-event-stream";
|
||||||
version = "0.2.12";
|
version = "0.2.14";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "awslabs";
|
owner = "awslabs";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-I4DqsPmHsZsReoqAH0WMU5/XlM4LiaxpJrVVYdXnMZY=";
|
sha256 = "sha256-QUrDIeQjsmf8TKu4UoSZi0eNw7Yg/2HIvXo7Y0FLY6w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
@ -20,6 +20,10 @@ stdenv.mkDerivation rec {
|
||||||
"-DBUILD_SHARED_LIBS:BOOL=ON"
|
"-DBUILD_SHARED_LIBS:BOOL=ON"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
passthru.tests = {
|
||||||
|
inherit nix;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "C99 implementation of the vnd.amazon.eventstream content-type";
|
description = "C99 implementation of the vnd.amazon.eventstream content-type";
|
||||||
homepage = "https://github.com/awslabs/aws-c-event-stream";
|
homepage = "https://github.com/awslabs/aws-c-event-stream";
|
||||||
|
|
Loading…
Reference in a new issue