Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / aws-c-io / default.nix
blobe1eb1939c2126f33f943122f0e335b988f4a007e
1 { lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, nix, s2n-tls, Security }:
3 stdenv.mkDerivation rec {
4   pname = "aws-c-io";
5   version = "0.13.29";
7   src = fetchFromGitHub {
8     owner = "awslabs";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-ZeogbjgpbqdCioLeb34CRol1Fa5BJOloAxxgE50yfQs=";
12   };
14   nativeBuildInputs = [ cmake ];
16   buildInputs = [ aws-c-cal aws-c-common s2n-tls ];
17   propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
19   cmakeFlags = [
20     "-DBUILD_SHARED_LIBS=ON"
21   ];
23   passthru.tests = {
24     inherit nix;
25   };
27   meta = with lib; {
28     description = "AWS SDK for C module for IO and TLS";
29     homepage = "https://github.com/awslabs/aws-c-io";
30     license = licenses.asl20;
31     platforms = platforms.unix;
32     maintainers = with maintainers; [ orivej ];
33   };