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
sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r";
14
};
15
16
-
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
0
0
0
0
0
0
0
0
0
17
buildInputs = [
18
-
gnome.gnome-common gtk-doc gtk3
19
-
libX11 libXext libXrender gobject-introspection
20
];
21
22
preConfigure = ''
23
-
./autogen.sh --prefix="$out"
0
0
0
24
'';
25
26
meta = with lib; {
···
13
sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r";
14
};
15
16
+
strictDeps = true;
17
+
nativeBuildInputs = [
18
+
autoconf
19
+
automake
20
+
libtool
21
+
pkg-config
22
+
gnome.gnome-common
23
+
gtk-doc
24
+
gobject-introspection
25
+
];
26
buildInputs = [
27
+
gtk3 libX11 libXext libXrender
0
28
];
29
30
preConfigure = ''
31
+
# NOCONFIGURE fixes 'If you meant to cross compile, use `--host'.'
32
+
NOCONFIGURE=1 ./autogen.sh --prefix="$out"
33
+
substituteInPlace ./configure \
34
+
--replace "dummy pkg-config" 'dummy ''${ac_tool_prefix}pkg-config'
35
'';
36
37
meta = with lib; {