mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
ibus-table: init at 1.9.6
This commit is contained in:
parent
e716dc9058
commit
f0b4065392
|
@ -156,6 +156,7 @@
|
|||
MP2E = "Cray Elliott <MP2E@archlinux.us>";
|
||||
msackman = "Matthew Sackman <matthew@wellquite.org>";
|
||||
mtreskin = "Max Treskin <zerthurd@gmail.com>";
|
||||
mudri = "James Wood <lamudri@gmail.com>";
|
||||
muflax = "Stefan Dorn <mail@muflax.com>";
|
||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
||||
|
|
21
pkgs/tools/inputmethods/ibus-table/default.nix
Normal file
21
pkgs/tools/inputmethods/ibus-table/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ 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; {
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -1112,6 +1112,8 @@ let
|
|||
|
||||
ibus-anthy = callPackage ../tools/inputmethods/ibus-anthy { };
|
||||
|
||||
ibus-table = callPackage ../tools/inputmethods/ibus-table { };
|
||||
|
||||
biosdevname = callPackage ../tools/networking/biosdevname { };
|
||||
|
||||
checkbashism = callPackage ../development/tools/misc/checkbashisms { };
|
||||
|
|
Loading…
Reference in a new issue