Merge pull request #18815 from aske/uniemoji

ibus-engines.uniemoji: init at 2016-09-20
This commit is contained in:
Nikolay Amiantov 2016-09-24 13:17:55 +04:00 committed by GitHub
commit 8925bb7415
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub
, python3Packages
}:
stdenv.mkDerivation rec {
name = "ibus-uniemoji-${version}";
version = "2016-09-20";
src = fetchFromGitHub {
owner = "salty-horse";
repo = "ibus-uniemoji";
rev = "c8931a4807a721168e45463ecba00805adb3fe8d";
sha256 = "0fydxkdjsbfbrbb8238rfnshmhp11c38hsa7y2gp1ii6mkjngb1j";
};
propagatedBuildInputs = with python3Packages; [ pyxdg python-Levenshtein ];
makeFlags = [ "PREFIX=$(out)" "SYSCONFDIR=$(out)/etc"
"PYTHON=${python3Packages.python.interpreter}" ];
postPatch = ''
sed -i "s,/etc/xdg/,$out/etc/xdg/," uniemoji.py
sed -i "s,/usr/share/,$out/share/,g" uniemoji.xml.in
'';
meta = with stdenv.lib; {
isIbusEngine = true;
description = "Input method (ibus) for entering unicode symbols and emoji by name";
homepage = "https://github.com/salty-horse/ibus-uniemoji";
license = with licenses; [ gpl3 mit ];
platforms = platforms.linux;
maintainers = with maintainers; [ aske ];
};
}

View file

@ -1182,6 +1182,7 @@ in
ibus-table = ibus-engines.table;
};
uniemoji = callPackage ../tools/inputmethods/ibus-engines/ibus-uniemoji { };
};
ibus-with-plugins = callPackage ../tools/inputmethods/ibus/wrapper.nix {