nixpkgs/pkgs/development/libraries/aws-c-io/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
844 B
Nix
Raw Normal View History

2022-09-04 06:40:37 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, nix, s2n-tls, Security }:
2020-12-26 04:05:28 +00:00
stdenv.mkDerivation rec {
pname = "aws-c-io";
2023-02-11 09:58:24 +00:00
version = "0.13.15";
2020-12-26 04:05:28 +00:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
2023-02-11 09:58:24 +00:00
sha256 = "sha256-UunYt5S8Xz/EZOojl+by3LaHidBE/P4Uwppm4SeHVP0=";
2020-12-26 04:05:28 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ aws-c-cal aws-c-common s2n-tls ];
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
2020-12-26 04:05:28 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];
2022-09-04 06:40:37 +00:00
passthru.tests = {
inherit nix;
};
2020-12-26 04:05:28 +00:00
meta = with lib; {
description = "AWS SDK for C module for IO and TLS";
homepage = "https://github.com/awslabs/aws-c-io";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
}