summary refs log tree commit diff
path: root/pkgs/development/libraries/aws-c-io
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-12-26 04:05:28 +0000
committerOrivej Desh <orivej@gmx.fr>2021-01-06 06:05:51 +0000
commitd899420b3d0598976605004893f19e32140ecdaf (patch)
treea5a797575a9c01101cfb8a8b803b03b33e2bbe3a /pkgs/development/libraries/aws-c-io
parent6bb19efc8200623d6b085a1e23b0e0a0a3e5fb53 (diff)
aws-c-io: init at 0.7.0
Diffstat (limited to 'pkgs/development/libraries/aws-c-io')
-rw-r--r--pkgs/development/libraries/aws-c-io/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/libraries/aws-c-io/default.nix b/pkgs/development/libraries/aws-c-io/default.nix
new file mode 100644
index 0000000000000..c93b2748a3e20
--- /dev/null
+++ b/pkgs/development/libraries/aws-c-io/default.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, s2n }:
+
+stdenv.mkDerivation rec {
+  pname = "aws-c-io";
+  version = "0.7.0";
+
+  src = fetchFromGitHub {
+    owner = "awslabs";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0wagc1205r57llqd39wqjasq3bgc8h1mfdqk4r5lcrnn4jbpcill";
+  };
+
+  nativeBuildInputs = [ cmake ];
+
+  buildInputs = [ aws-c-cal aws-c-common s2n ];
+
+  cmakeFlags = [
+    "-DBUILD_SHARED_LIBS=ON"
+    "-DCMAKE_MODULE_PATH=${aws-c-common}/lib/cmake"
+  ];
+
+  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 ];
+  };
+}