summary refs log tree commit diff
path: root/pkgs/development/libraries/aws-c-cal
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-09-04 05:28:56 +0000
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-09-04 16:17:30 +0200
commitf2d57bac7686de5e1d9c43f47677e64a8ea8eccb (patch)
treee62e5f6174fdb5c8998288a5538a388305a62b8f /pkgs/development/libraries/aws-c-cal
parentc2b4fed7e9d82068fac5dfcf5b12dc5f367bfc6a (diff)
downloadnixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.tar
nixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.tar.gz
nixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.tar.bz2
nixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.tar.lz
nixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.tar.xz
nixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.tar.zst
nixpkgs-f2d57bac7686de5e1d9c43f47677e64a8ea8eccb.zip
aws-c-cal: 0.5.18 -> 0.5.19
Diffstat (limited to 'pkgs/development/libraries/aws-c-cal')
-rw-r--r--pkgs/development/libraries/aws-c-cal/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/libraries/aws-c-cal/default.nix b/pkgs/development/libraries/aws-c-cal/default.nix
index 0fa050a08f3..ec22b6c5af1 100644
--- a/pkgs/development/libraries/aws-c-cal/default.nix
+++ b/pkgs/development/libraries/aws-c-cal/default.nix
@@ -1,14 +1,14 @@
-{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, openssl, Security }:
+{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, nix, openssl, Security }:
 
 stdenv.mkDerivation rec {
   pname = "aws-c-cal";
-  version = "0.5.18";
+  version = "0.5.19";
 
   src = fetchFromGitHub {
     owner = "awslabs";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-sT5ahf8MuIhqDV6RrRU+RgsLdwVUDEFWRZJpzQJOPGA=";
+    sha256 = "sha256-VEjefo+y8bizCxvJmzx+dZ1BE9eT1cR3Tkfn1eVQI/0=";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -21,6 +21,10 @@ stdenv.mkDerivation rec {
     "-DBUILD_SHARED_LIBS=ON"
   ];
 
+  passthru.tests = {
+    inherit nix;
+  };
+
   meta = with lib; {
     description = "AWS Crypto Abstraction Layer ";
     homepage = "https://github.com/awslabs/aws-c-cal";