Merge pull request #270814 from emilytrau/readline63-clang

readline63: fix clang build
This commit is contained in:
Emily Trau 2023-11-29 18:37:14 +11:00 committed by GitHub
commit eb9abdb1db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,10 @@ stdenv.mkDerivation {
in
import ./readline-6.3-patches.nix patch);
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
};
meta = with lib; {
description = "Library for interactive line editing";