Merge pull request #98360 from r-burns/liboping

liboping: fix build on Darwin
This commit is contained in:
Mario Rodas 2020-09-21 06:23:06 -05:00 committed by GitHub
commit 5df60eda72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ncurses ? null, perl ? null }:
{ stdenv, fetchurl, ncurses ? null, perl ? null, lib }:
stdenv.mkDerivation rec {
name = "liboping-1.10.0";
@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "1n2wkmvw6n80ybdwkjq8ka43z2x8mvxq49byv61b52iyz69slf7b";
};
NIX_CFLAGS_COMPILE = "-Wno-error=format-truncation";
NIX_CFLAGS_COMPILE = lib.optionalString
stdenv.cc.isGNU "-Wno-error=format-truncation";
buildInputs = [ ncurses perl ];