Merge pull request #155807 from linsui/ibus-libpinyin
ibus-libpinyin: enable more features
This commit is contained in:
commit
03c1d4f787
1 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
, gettext
|
, gettext
|
||||||
|
@ -11,6 +12,10 @@
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
, python3
|
, python3
|
||||||
|
, lua
|
||||||
|
, opencc
|
||||||
|
, libsoup
|
||||||
|
, json-glib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -31,6 +36,11 @@ stdenv.mkDerivation rec {
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-cloud-input-mode"
|
||||||
|
"--enable-opencc"
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
ibus
|
ibus
|
||||||
glib
|
glib
|
||||||
|
@ -42,6 +52,10 @@ stdenv.mkDerivation rec {
|
||||||
]))
|
]))
|
||||||
gtk3
|
gtk3
|
||||||
db
|
db
|
||||||
|
lua
|
||||||
|
opencc
|
||||||
|
libsoup
|
||||||
|
json-glib
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue