xbindkeys-config: add -fcommon workaround

This commit is contained in:
Patrick Jackson 2022-06-01 09:33:57 -07:00
parent b62ada4305
commit d798024479

View file

@ -4,6 +4,10 @@ stdenv.mkDerivation rec {
pname = "xbindkeys-config";
version = "0.1.3";
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10.
NIX_CFLAGS_COMPILE = "-fcommon";
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ gtk ];