nixos-config/packages/ibus-tp.nix

21 lines
615 B
Nix
Raw Normal View History

{ stdenvNoCC, fetchFromGitHub, ibus, ibus-engines }: stdenvNoCC.mkDerivation rec {
2022-05-17 13:28:48 +00:00
pname = "ibus-toki-pona";
version = "20220215";
src = fetchFromGitHub {
owner = "Id405";
repo = "sitelen-pona-ucsur-guide";
rev = "43da00449a99c0b8aaa6f5099d0dc1f795c7c39f";
sha256 = "sha256-CIa0wJnv1G0jpS8l2cjEFey1pdQuJPftiwZ5MZyriJ8=";
};
buildInputs = [ ibus ibus-engines.table ];
2022-05-17 13:28:48 +00:00
buildPhase = ''
2022-05-17 14:12:32 +00:00
export HOME=$(pwd)
ibus-table-createdb -n tokipona.db -s tokipona.txt
2022-05-17 13:28:48 +00:00
'';
installPhase = ''
install -m444 -Dt $out/share/ibus-table/tables tokipona.db
'';
2022-05-17 14:12:32 +00:00
meta.isIbusEngine = true;
2022-05-17 13:28:48 +00:00
}