Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

xbindkeys-config: add -fcommon workaround

+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