about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix
blob: 244169cf46b6a3cde3c444a7e86f271c4640e35a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, ibus, pkgconfig, python3, pythonPackages }:

stdenv.mkDerivation rec {
  name = "ibus-table-${version}";
  version = "1.9.6";

  src = fetchurl {
    url = "https://github.com/kaio/ibus-table/releases/download/${version}/${name}.tar.gz";
    sha256 = "0xygfscmsx0x80c4d4v40k9bc7831kgdsc74mc84ljxbjg9p9lcf";
  };

  buildInputs = [ ibus pkgconfig python3 pythonPackages.pygobject3 ];

  meta = with stdenv.lib; {
    isIbusEngine = true;
    description  = "An IBus framework for table-based input methods";
    homepage     = https://github.com/kaio/ibus-table/wiki;
    license      = licenses.lgpl21;
    platforms    = platforms.linux;
    maintainers  = with maintainers; [ mudri ];
  };
}