aws-c-http: init at 0.6.7
This commit is contained in:
parent
ff6afebdb3
commit
1c2ca77d74
46
pkgs/development/libraries/aws-c-http/default.nix
Normal file
46
pkgs/development/libraries/aws-c-http/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ lib, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, aws-c-cal
|
||||||
|
, aws-c-common
|
||||||
|
, aws-c-compression
|
||||||
|
, aws-c-io
|
||||||
|
, cmake
|
||||||
|
, s2n-tls
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "aws-c-http";
|
||||||
|
version = "0.6.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "awslabs";
|
||||||
|
repo = "aws-c-http";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1s06bz6w7355ldyhwjidcpbff7591ch4lwwjcj47a6k2kczdmiz4";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
aws-c-cal
|
||||||
|
aws-c-common
|
||||||
|
aws-c-compression
|
||||||
|
aws-c-io
|
||||||
|
s2n-tls
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
||||||
|
"-DBUILD_SHARED_LIBS=ON"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "C99 implementation of the HTTP/1.1 and HTTP/2 specifications";
|
||||||
|
homepage = "https://github.com/awslabs/aws-c-http";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ r-burns ];
|
||||||
|
};
|
||||||
|
}
|
@ -15326,6 +15326,8 @@ with pkgs;
|
|||||||
|
|
||||||
aws-c-event-stream = callPackage ../development/libraries/aws-c-event-stream { };
|
aws-c-event-stream = callPackage ../development/libraries/aws-c-event-stream { };
|
||||||
|
|
||||||
|
aws-c-http = callPackage ../development/libraries/aws-c-http { };
|
||||||
|
|
||||||
aws-c-io = callPackage ../development/libraries/aws-c-io {
|
aws-c-io = callPackage ../development/libraries/aws-c-io {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user