3
0
Fork 0
forked from mirrors/nixpkgs

ibus-table-others: init at 1.3.7, closes #8460

This commit is contained in:
laMudri 2015-06-22 15:24:27 +01:00 committed by Rok Garbas
parent f0b4065392
commit 22172b8e43
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -1114,6 +1114,8 @@ let
ibus-table = callPackage ../tools/inputmethods/ibus-table { };
ibus-table-others = callPackage ../tools/inputmethods/ibus-table-others { };
biosdevname = callPackage ../tools/networking/biosdevname { };
checkbashism = callPackage ../development/tools/misc/checkbashisms { };