lol

Merge pull request #199984 from r-ryantm/auto-update/aws-c-common

authored by

Sandro and committed by
GitHub
57cbe7a7 be602ebd

+7 -3
+7 -3
pkgs/development/libraries/aws-c-common/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , cmake 5 - , coreutils 5 + , nix 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "aws-c-common"; 10 - version = "0.8.4"; 10 + version = "0.8.5"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "awslabs"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-8RKx3OPb53hCquFcT+AbtX+LDNEvzLHuqtkbvXewqRs="; 16 + sha256 = "sha256-kAwcVB39rcS59I2qJhYc7Xr3mXMWtKfN45jo+8BNHwA="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ]; ··· 42 42 ''; 43 43 44 44 doCheck = true; 45 + 46 + passthru.tests = { 47 + inherit nix; 48 + }; 45 49 46 50 meta = with lib; { 47 51 description = "AWS SDK for C common core";