tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ibus-engines.m17n: use autoreconfHook
Robin Gloster
9 years ago
c4ba389a
d8679e49
+2
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
inputmethods
ibus-engines
ibus-m17n
default.nix
+2
-6
pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix
reviewed
···
1
1
{ stdenv, fetchFromGitHub
2
2
-
, automake, autoconf, libtool, pkgconfig
2
2
+
, autoreconfHook, pkgconfig
3
3
, ibus, m17n_lib, m17n_db, gettext, python3, pygobject3
4
4
}:
5
5
···
19
19
python3 pygobject3
20
20
];
21
21
22
22
-
nativeBuildInputs = [ automake autoconf libtool pkgconfig ];
23
23
-
24
24
-
preConfigure = ''
25
25
-
autoreconf --verbose --force --install
26
26
-
'';
22
22
+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
27
23
28
24
meta = with stdenv.lib; {
29
25
isIbusEngine = true;