tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
xbindkeys-config: add -fcommon workaround
arcuru.tngl.sh
3 years ago
d7980244
b62ada43
+4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
X11
xbindkeys-config
default.nix
+4
pkgs/tools/X11/xbindkeys-config/default.nix
···
4
4
pname = "xbindkeys-config";
5
5
version = "0.1.3";
6
6
7
7
+
# Workaround build failure on -fno-common toolchains like upstream
8
8
+
# gcc-10.
9
9
+
NIX_CFLAGS_COMPILE = "-fcommon";
10
10
+
7
11
nativeBuildInputs = [ pkg-config makeWrapper ];
8
12
buildInputs = [ gtk ];
9
13