Merge pull request #266752 from wegank/souffle-clang-16

souffle: fix build with clang 16

authored by

Pierre Bourdon and committed by
GitHub
597366a4 33248a2c

+4
+4
pkgs/development/compilers/souffle/default.nix
··· 34 34 35 35 cmakeFlags = [ "-DSOUFFLE_GIT=OFF" ]; 36 36 37 + env = lib.optionalAttrs stdenv.cc.isClang { 38 + NIX_CFLAGS_COMPILE = "-Wno-error=unused-but-set-variable"; 39 + }; 40 + 37 41 postInstall = '' 38 42 wrapProgram "$out/bin/souffle" --prefix PATH : "${toolsPath}" 39 43 '';