summaryrefslogtreecommitdiff
path: root/pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix
blob: 3ca6f3ffcfe6ccbd4dec0282450de818e179ab8b (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 ];
  };
}