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

xbindkeys-config: add -fcommon workaround
This commit is contained in:
Sandro
2022-06-03 17:20:58 +02:00
committed by GitHub
@@ -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 ];