mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 03:53:41 +00:00
19a9ca96aa
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
42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, python3, ibus, pkgconfig, gtk3, m17n_lib
|
|
, wrapGAppsHook, gobjectIntrospection
|
|
}:
|
|
|
|
let
|
|
|
|
python = python3.withPackages (ps: with ps; [
|
|
pygobject3
|
|
dbus-python
|
|
]);
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ibus-typing-booster-${version}";
|
|
version = "2.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mike-fabian";
|
|
repo = "ibus-typing-booster";
|
|
rev = version;
|
|
sha256 = "0qg49d0hsb1mvq33p14nc6mdw6x3km1ax620gphczfmz9ki5bf4g";
|
|
};
|
|
|
|
patches = [ ./hunspell-dirs.patch ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook gobjectIntrospection ];
|
|
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;
|
|
};
|
|
}
|