Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.2 KiB
Nix
78 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
gettext,
|
|
gobject-introspection,
|
|
pkg-config,
|
|
wrapGAppsHook3,
|
|
sqlite,
|
|
libpinyin,
|
|
db,
|
|
ibus,
|
|
glib,
|
|
gtk3,
|
|
python3,
|
|
lua,
|
|
opencc,
|
|
libsoup_3,
|
|
json-glib,
|
|
libnotify,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-libpinyin";
|
|
version = "1.16.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libpinyin";
|
|
repo = "ibus-libpinyin";
|
|
tag = version;
|
|
hash = "sha256-3QZHovjzGifWLFVudCnJOwMn/M3Nzfn8CZ1HpQwzUVw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
gettext
|
|
gobject-introspection.setupHook
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-cloud-input-mode"
|
|
"--enable-opencc"
|
|
];
|
|
|
|
buildInputs = [
|
|
ibus
|
|
glib
|
|
sqlite
|
|
libpinyin
|
|
(python3.withPackages (
|
|
pypkgs: with pypkgs; [
|
|
pygobject3
|
|
(toPythonModule ibus)
|
|
]
|
|
))
|
|
gtk3
|
|
db
|
|
lua
|
|
opencc
|
|
libsoup_3
|
|
json-glib
|
|
libnotify
|
|
];
|
|
|
|
meta = {
|
|
isIbusEngine = true;
|
|
description = "IBus interface to the libpinyin input method";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
linsui
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|