Files
nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
python3,
ibus,
pkg-config,
gtk3,
m17n_lib,
wrapGAppsHook3,
gobject-introspection,
}:
let
python = python3.withPackages (
ps: with ps; [
pygobject3
dbus-python
]
);
in
stdenv.mkDerivation rec {
pname = "ibus-typing-booster";
version = "2.27.74";
src = fetchFromGitHub {
owner = "mike-fabian";
repo = "ibus-typing-booster";
rev = version;
hash = "sha256-yAa/U1pL7KnJAuxaQkzbtOvdVhIgQiYCMlPnjHmoFEM=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
wrapGAppsHook3
gobject-introspection
];
buildInputs = [
python
ibus
gtk3
m17n_lib
];
preFixup = ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${m17n_lib}/lib")
'';
meta = with lib; {
homepage = "https://mike-fabian.github.io/ibus-typing-booster/";
license = licenses.gpl3Plus;
description = "Completion input method for faster typing";
mainProgram = "emoji-picker";
maintainers = [ ];
platforms = platforms.linux;
isIbusEngine = true;
};
}