ibus-engines.typing-booster-unwrapped 2.24.0 -> 2.24.1 https://repology.org/project/ibus-typing-booster/versions attrpath: ibus-engines.typing-booster-unwrapped Checking auto update branch... No auto update branch exists Old version 2.24.0" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, autoreconfHook, python3, ibus, pkg-config, gtk3, m17n_lib , wrapGAppsHook, gobject-introspection }: let python = python3.withPackages (ps: with ps; [ pygobject3 dbus-python ]); in stdenv.mkDerivation rec { pname = "ibus-typing-booster"; version = "2.24.1"; src = fetchFromGitHub { owner = "mike-fabian"; repo = "ibus-typing-booster"; rev = version; hash = "sha256-gG2wuoJoEOsnvcPJkravpsJ746/0r9wAEo2Vft3bEoo="; }; nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook 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 = "A completion input method for faster typing"; maintainers = with maintainers; [ ncfavier ]; isIbusEngine = true; }; }