Merge pull request #175779 from patricksjackson/fno-common-xbindkeys

xbindkeys-config: add -fcommon workaround

authored by

Sandro and committed by
GitHub
66def295 44b5c8b6

+4
+4
pkgs/tools/X11/xbindkeys-config/default.nix
··· 4 4 pname = "xbindkeys-config"; 5 5 version = "0.1.3"; 6 6 7 + # Workaround build failure on -fno-common toolchains like upstream 8 + # gcc-10. 9 + NIX_CFLAGS_COMPILE = "-fcommon"; 10 + 7 11 nativeBuildInputs = [ pkg-config makeWrapper ]; 8 12 buildInputs = [ gtk ]; 9 13