ibus-table-others: init at 1.3.7, closes #8460
This commit is contained in:
parent
f0b4065392
commit
22172b8e43
29
pkgs/tools/inputmethods/ibus-table-others/default.nix
Normal file
29
pkgs/tools/inputmethods/ibus-table-others/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, ibus, ibus-table, pkgconfig, python3 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ibus-table-others-${version}";
|
||||||
|
version = "1.3.7";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/moebiuscurve/ibus-table-others/releases/download/${version}/${name}.tar.gz";
|
||||||
|
sha256 = "0vmz82il796062jbla5pawsr5dqyhs7ald7xjp84zfccc09dg9kx";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ibus ibus-table pkgconfig python3 ];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
export HOME=/tmp/ibus-table-others
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
rm -rf /tmp/ibus-table-others
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Various table-based input methods for IBus";
|
||||||
|
homepage = https://github.com/moebiuscurve/ibus-table-others;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ mudri ];
|
||||||
|
};
|
||||||
|
}
|
@ -1114,6 +1114,8 @@ let
|
|||||||
|
|
||||||
ibus-table = callPackage ../tools/inputmethods/ibus-table { };
|
ibus-table = callPackage ../tools/inputmethods/ibus-table { };
|
||||||
|
|
||||||
|
ibus-table-others = callPackage ../tools/inputmethods/ibus-table-others { };
|
||||||
|
|
||||||
biosdevname = callPackage ../tools/networking/biosdevname { };
|
biosdevname = callPackage ../tools/networking/biosdevname { };
|
||||||
|
|
||||||
checkbashism = callPackage ../development/tools/misc/checkbashisms { };
|
checkbashism = callPackage ../development/tools/misc/checkbashisms { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user