f63daa89f7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ibus-typing-booster/versions
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, python3, ibus, pkgconfig, gtk3, m17n_lib
|
|
, wrapGAppsHook, gobject-introspection
|
|
}:
|
|
|
|
let
|
|
|
|
python = python3.withPackages (ps: with ps; [
|
|
pygobject3
|
|
dbus-python
|
|
]);
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ibus-typing-booster-${version}";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mike-fabian";
|
|
repo = "ibus-typing-booster";
|
|
rev = version;
|
|
sha256 = "1d32p9k9vp64rpmj2cs3552ak9jn54vyi2hqdpzag33v16cydsl4";
|
|
};
|
|
|
|
patches = [ ./hunspell-dirs.patch ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook gobject-introspection ];
|
|
buildInputs = [ python ibus gtk3 m17n_lib ];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${m17n_lib}/lib")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://mike-fabian.github.io/ibus-typing-booster/;
|
|
license = licenses.gpl3Plus;
|
|
description = "A typing booster engine for the IBus platform";
|
|
maintainers = with maintainers; [ ma27 ];
|
|
isIbusEngine = true;
|
|
};
|
|
}
|