56 lines
933 B
Nix
56 lines
933 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, ibus
|
|
, gtk3
|
|
, m17n_lib
|
|
, m17n_db
|
|
, gettext
|
|
, python3
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-m17n";
|
|
version = "1.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ibus";
|
|
repo = "ibus-m17n";
|
|
rev = version;
|
|
sha256 = "sha256-kPTysHTC+j8BMnzsddRa4Tg54idejApTqmLrP20pu5M=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
gettext
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
ibus
|
|
gtk3
|
|
m17n_lib
|
|
m17n_db
|
|
(python3.withPackages (ps: [
|
|
ps.pygobject3
|
|
(ps.toPythonModule ibus)
|
|
]))
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-gtk=3.0"
|
|
];
|
|
|
|
meta = with lib; {
|
|
isIbusEngine = true;
|
|
description = "m17n engine for ibus";
|
|
homepage = "https://github.com/ibus/ibus-m17n";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ericsagnes ];
|
|
};
|
|
}
|