3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
937 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, ibus
, gtk3
, m17n_lib
, m17n_db
, gettext
, python3
, wrapGAppsHook
2016-02-28 13:10:11 +00:00
}:
2016-02-20 01:49:35 +00:00
stdenv.mkDerivation rec {
pname = "ibus-m17n";
version = "1.4.9";
2016-02-20 01:49:35 +00:00
src = fetchFromGitHub {
owner = "ibus";
repo = "ibus-m17n";
rev = version;
sha256 = "sha256-N9hzyu2etbxlJPD2yUc2T0jxAfhEhshQ8X5R27JBg1E=";
2016-02-20 01:49:35 +00:00
};
nativeBuildInputs = [
autoreconfHook
gettext
pkg-config
wrapGAppsHook
2016-02-20 01:49:35 +00:00
];
buildInputs = [
ibus
gtk3
m17n_lib
m17n_db
(python3.withPackages (ps: [
ps.pygobject3
(ps.toPythonModule ibus)
]))
];
configureFlags = [
"--with-gtk=3.0"
];
2016-02-20 01:49:35 +00:00
meta = with lib; {
2016-02-20 01:49:35 +00:00
isIbusEngine = true;
description = "m17n engine for ibus";
homepage = "https://github.com/ibus/ibus-m17n";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
2016-02-20 01:49:35 +00:00
};
}