lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ibus-table: init at 1.9.6

authored by

laMudri and committed by
Rok Garbas
f0b40653 e716dc90

+24
+1
lib/maintainers.nix
··· 156 156 MP2E = "Cray Elliott <MP2E@archlinux.us>"; 157 157 msackman = "Matthew Sackman <matthew@wellquite.org>"; 158 158 mtreskin = "Max Treskin <zerthurd@gmail.com>"; 159 + mudri = "James Wood <lamudri@gmail.com>"; 159 160 muflax = "Stefan Dorn <mail@muflax.com>"; 160 161 nathan-gs = "Nathan Bijnens <nathan@nathan.gs>"; 161 162 nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
+21
pkgs/tools/inputmethods/ibus-table/default.nix
··· 1 + { stdenv, fetchurl, ibus, pkgconfig, python3, pythonPackages }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ibus-table-${version}"; 5 + version = "1.9.6"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/kaio/ibus-table/releases/download/${version}/${name}.tar.gz"; 9 + sha256 = "0xygfscmsx0x80c4d4v40k9bc7831kgdsc74mc84ljxbjg9p9lcf"; 10 + }; 11 + 12 + buildInputs = [ ibus pkgconfig python3 pythonPackages.pygobject3 ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "An IBus framework for table-based input methods"; 16 + homepage = https://github.com/kaio/ibus-table/wiki; 17 + license = licenses.lgpl21; 18 + platforms = platforms.linux; 19 + maintainers = with maintainers; [ mudri ]; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 1112 1112 1113 1113 ibus-anthy = callPackage ../tools/inputmethods/ibus-anthy { }; 1114 1114 1115 + ibus-table = callPackage ../tools/inputmethods/ibus-table { }; 1116 + 1115 1117 biosdevname = callPackage ../tools/networking/biosdevname { }; 1116 1118 1117 1119 checkbashism = callPackage ../development/tools/misc/checkbashisms { };