ibus-m17n: use Python 3
This commit is contained in:
parent
c62bf00442
commit
41204574be
|
@ -1,5 +1,7 @@
|
|||
{ stdenv, fetchFromGitHub, ibus, m17n_lib, m17n_db, automake, autoconf,
|
||||
gettext, libtool, pkgconfig, python, pythonPackages }:
|
||||
{ stdenv, fetchFromGitHub
|
||||
, automake, autoconf, libtool, pkgconfig
|
||||
, ibus, m17n_lib, m17n_db, gettext, python3, pygobject3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ibus-m17n-${version}";
|
||||
|
@ -12,11 +14,13 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1n0bvgc4jyksgvzrw5zs2pxcpxcn3gcc0j2kasbznm34fpv3frsr";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ibus m17n_lib m17n_db automake autoconf gettext
|
||||
libtool pkgconfig python pythonPackages.pygobject3
|
||||
buildInputs = [
|
||||
ibus m17n_lib m17n_db gettext
|
||||
python3 pygobject3
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ automake autoconf libtool pkgconfig ];
|
||||
|
||||
preConfigure = ''
|
||||
autoreconf --verbose --force --install
|
||||
'';
|
||||
|
|
|
@ -1180,7 +1180,9 @@ let
|
|||
inherit (python3Packages) pygobject3;
|
||||
};
|
||||
|
||||
m17n = callPackage ../tools/inputmethods/ibus-engines/ibus-m17n { };
|
||||
m17n = callPackage ../tools/inputmethods/ibus-engines/ibus-m17n {
|
||||
inherit (python3Packages) pygobject3;
|
||||
};
|
||||
|
||||
mozc = callPackage ../tools/inputmethods/ibus-engines/ibus-mozc {
|
||||
inherit (pythonPackages) gyp;
|
||||
|
|
Loading…
Reference in New Issue