1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00

aws-c-common: silence warnings that cause -Werror

This commit is contained in:
Orivej Desh 2019-02-14 10:26:07 +00:00
parent f8acd126c5
commit 8f5afc5bb6

View file

@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [
"-Wno-nullability-extension"
"-Wno-typedef-redefinition"
];
meta = with lib; {
description = "AWS SDK for C common core";
homepage = https://github.com/awslabs/aws-c-common;