nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix
R. RyanTM 1b6984bec1 ibus-engines.m17n: 1.3.4 -> 1.4.1 (#50089)
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-m17n/versions
2018-11-12 21:00:57 +01:00

35 lines
817 B
Nix

{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig
, ibus, m17n_lib, m17n_db, gettext, python3
}:
stdenv.mkDerivation rec {
name = "ibus-m17n-${version}";
version = "1.4.1";
src = fetchFromGitHub {
owner = "ibus";
repo = "ibus-m17n";
rev = version;
sha256 = "1xl7swqn46nhi43rka0zx666mpk667ykag3sz07x0zqrwi41frps";
};
buildInputs = [
ibus m17n_lib m17n_db gettext
python3
];
nativeBuildInputs = [ autoreconfHook pkgconfig python3.pkgs.wrapPython ];
postFixup = "wrapPythonPrograms";
meta = with stdenv.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 ];
};
}