forked from mirrors/nixpkgs
1b6984bec1
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
35 lines
817 B
Nix
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 ];
|
|
};
|
|
}
|