tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
keybinder3: fix cross
Artturin
3 years ago
83f01989
34e8a6de
+15
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
keybinder3
default.nix
+15
-4
pkgs/development/libraries/keybinder3/default.nix
···
13
13
sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r";
14
14
};
15
15
16
16
-
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
16
16
+
strictDeps = true;
17
17
+
nativeBuildInputs = [
18
18
+
autoconf
19
19
+
automake
20
20
+
libtool
21
21
+
pkg-config
22
22
+
gnome.gnome-common
23
23
+
gtk-doc
24
24
+
gobject-introspection
25
25
+
];
17
26
buildInputs = [
18
18
-
gnome.gnome-common gtk-doc gtk3
19
19
-
libX11 libXext libXrender gobject-introspection
27
27
+
gtk3 libX11 libXext libXrender
20
28
];
21
29
22
30
preConfigure = ''
23
23
-
./autogen.sh --prefix="$out"
31
31
+
# NOCONFIGURE fixes 'If you meant to cross compile, use `--host'.'
32
32
+
NOCONFIGURE=1 ./autogen.sh --prefix="$out"
33
33
+
substituteInPlace ./configure \
34
34
+
--replace "dummy pkg-config" 'dummy ''${ac_tool_prefix}pkg-config'
24
35
'';
25
36
26
37
meta = with lib; {