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
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
gettext,
|
|
pkg-config,
|
|
wrapGAppsHook3,
|
|
anthy,
|
|
ibus,
|
|
glib,
|
|
gobject-introspection,
|
|
gtk3,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-anthy";
|
|
version = "1.5.17";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ibus/ibus-anthy/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-nh0orX2ivl4NnA6w2Pt1V/yJdwqiI3Jy3r4Ze9YavUA=";
|
|
};
|
|
|
|
buildInputs = [
|
|
anthy
|
|
glib
|
|
gtk3
|
|
ibus
|
|
(python3.withPackages (ps: [
|
|
ps.pygobject3
|
|
(ps.toPythonModule ibus)
|
|
]))
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
gobject-introspection
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t"
|
|
];
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
isIbusEngine = true;
|
|
description = "IBus interface to the anthy input method";
|
|
homepage = "https://github.com/fujiwarat/ibus-anthy";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|