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:
parent
f8acd126c5
commit
8f5afc5bb6
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue