summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-09-02 23:47:57 +0000
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-09-04 16:26:29 +0200
commit3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a (patch)
tree9c41809d2cc416977cce6f8e5cfa1e1025284a6f
parent3f9b0f53e48c6866c604183d04871b8122c62972 (diff)
downloadnixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.tar
nixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.tar.gz
nixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.tar.bz2
nixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.tar.lz
nixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.tar.xz
nixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.tar.zst
nixpkgs-3ba074ce07b5ae07a4d03e0cbb1c2e2fcaf2426a.zip
aws-c-s3: 0.1.43 -> 0.1.46
-rw-r--r--pkgs/development/libraries/aws-c-s3/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/libraries/aws-c-s3/default.nix b/pkgs/development/libraries/aws-c-s3/default.nix
index 9d1706bff0a..3b1eea540d5 100644
--- a/pkgs/development/libraries/aws-c-s3/default.nix
+++ b/pkgs/development/libraries/aws-c-s3/default.nix
@@ -8,18 +8,19 @@
 , aws-c-io
 , aws-checksums
 , cmake
+, nix
 , s2n-tls
 }:
 
 stdenv.mkDerivation rec {
   pname = "aws-c-s3";
-  version = "0.1.43";
+  version = "0.1.46";
 
   src = fetchFromGitHub {
     owner = "awslabs";
     repo = "aws-c-s3";
     rev = "v${version}";
-    sha256 = "sha256-I4pPNjaRNHPzVZVgY0qm8S+Tdvtklx/N3EKu0SAm5c8=";
+    sha256 = "sha256-OUrMdIWWnk+yAJTVJ/UlUNFABLlTkmYac5g125Zq+fQ=";
   };
 
   nativeBuildInputs = [
@@ -41,6 +42,10 @@ stdenv.mkDerivation rec {
     "-DBUILD_SHARED_LIBS=ON"
   ];
 
+  passthru.tests = {
+    inherit nix;
+  };
+
   meta = with lib; {
     description = "C99 library implementation for communicating with the S3 service";
     homepage = "https://github.com/awslabs/aws-c-s3";