Skip to content

Commit

Permalink
aws-checksums: fix build with cmake 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Nov 26, 2020
1 parent 42c8929 commit 61574a0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/development/libraries/aws-checksums/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{ lib, stdenv, fetchFromGitHub, cmake, fetchpatch }:

stdenv.mkDerivation rec {
pname = "aws-checksums";
Expand All @@ -13,6 +13,14 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ cmake ];

# can be removed once https://github.com/awslabs/aws-checksums/pull/40 gets merged, and version bumped
patches = [
(fetchpatch {
url = "https://github.com/awslabs/aws-checksums/pull/40/commits/fb5a57b3c072bd88e45de76fbb76bdc89c67b193.patch";
sha256 = "056f9kyg1c4lwjq8n0r28w1n3zbwrwpi1wbqabk99gaayg46x35a";
})
];

cmakeFlags = [ "-DBUILD_SHARED_LIBS:BOOL=ON" ];

meta = with lib; {
Expand Down

0 comments on commit 61574a0

Please sign in to comment.