44 lines
841 B
Nix
44 lines
841 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
ibus,
|
|
ibus-table,
|
|
pkg-config,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-table-others";
|
|
version = "1.3.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/moebiuscurve/ibus-table-others/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
hash = "sha256-4ZM5WZPh6Y5M50KDS+86j00v4pWTRdcdVYh4DcEYXAA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
python3
|
|
];
|
|
buildInputs = [
|
|
ibus
|
|
ibus-table
|
|
];
|
|
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = with lib; {
|
|
isIbusEngine = true;
|
|
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
|
|
McSinyx
|
|
];
|
|
};
|
|
}
|