···14 substituteInPlace build/build-usual-image --replace '"(made by $USER on $date)"' '""'
15 '';
1600000000017 meta = with lib; {
18 homepage = "https://s48.org/";
19 description = "Scheme 48 interpreter for R5RS";
···14 substituteInPlace build/build-usual-image --replace '"(made by $USER on $date)"' '""'
15 '';
1617+ # Silence warnings related to use of implicitly declared library functions and implicit ints.
18+ # TODO: Remove and/or fix with patches the next time this package is updated.
19+ env = lib.optionalAttrs stdenv.cc.isClang {
20+ NIX_CFLAGS_COMPILE = toString [
21+ "-Wno-error=implicit-function-declaration"
22+ "-Wno-error=implicit-int"
23+ ];
24+ };
25+26 meta = with lib; {
27 homepage = "https://s48.org/";
28 description = "Scheme 48 interpreter for R5RS";