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
commit 66def2957e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ];