Merge pull request #155807 from linsui/ibus-libpinyin

ibus-libpinyin: enable more features
This commit is contained in:
Jan Tojnar 2022-01-23 15:31:37 +01:00 committed by GitHub
commit 03c1d4f787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, gettext
@ -11,6 +12,10 @@
, glib
, gtk3
, python3
, lua
, opencc
, libsoup
, json-glib
}:
stdenv.mkDerivation rec {
@ -31,6 +36,11 @@ stdenv.mkDerivation rec {
wrapGAppsHook
];
configureFlags = [
"--enable-cloud-input-mode"
"--enable-opencc"
];
buildInputs = [
ibus
glib
@ -42,6 +52,10 @@ stdenv.mkDerivation rec {
]))
gtk3
db
lua
opencc
libsoup
json-glib
];
meta = with lib; {