python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / i18n / input-method / default.nix
blob07fb86bcc25e8dc389b512dc852dafcbca44ece3
1 { config, pkgs, lib, ... }:
3 with lib;
4 let
5   cfg = config.i18n.inputMethod;
7   gtk2_cache = pkgs.runCommand "gtk2-immodule.cache"
8     { preferLocalBuild = true;
9       allowSubstitutes = false;
10       buildInputs = [ pkgs.gtk2 cfg.package ];
11     }
12     ''
13       mkdir -p $out/etc/gtk-2.0/
14       GTK_PATH=${cfg.package}/lib/gtk-2.0/ gtk-query-immodules-2.0 > $out/etc/gtk-2.0/immodules.cache
15     '';
17   gtk3_cache = pkgs.runCommand "gtk3-immodule.cache"
18     { preferLocalBuild = true;
19       allowSubstitutes = false;
20       buildInputs = [ pkgs.gtk3 cfg.package ];
21     }
22     ''
23       mkdir -p $out/etc/gtk-3.0/
24       GTK_PATH=${cfg.package}/lib/gtk-3.0/ gtk-query-immodules-3.0 > $out/etc/gtk-3.0/immodules.cache
25     '';
29   options.i18n = {
30     inputMethod = {
31       enabled = mkOption {
32         type    = types.nullOr (types.enum [ "ibus" "fcitx" "fcitx5" "nabi" "uim" "hime" "kime" ]);
33         default = null;
34         example = "fcitx";
35         description = lib.mdDoc ''
36           Select the enabled input method. Input methods is a software to input symbols that are not available on standard input devices.
38           Input methods are specially used to input Chinese, Japanese and Korean characters.
40           Currently the following input methods are available in NixOS:
42           - ibus: The intelligent input bus, extra input engines can be added using `i18n.inputMethod.ibus.engines`.
43           - fcitx: A customizable lightweight input method, extra input engines can be added using `i18n.inputMethod.fcitx.engines`.
44           - fcitx5: The next generation of fcitx, addons (including engines, dictionaries, skins) can be added using `i18n.inputMethod.fcitx5.addons`.
45           - nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5.
46           - uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.
47           - hime: An extremely easy-to-use input method framework.
48           - kime: Koream IME.
49         '';
50       };
52       package = mkOption {
53         internal = true;
54         type     = types.nullOr types.path;
55         default  = null;
56         description = lib.mdDoc ''
57           The input method method package.
58         '';
59       };
60     };
61   };
63   config = mkIf (cfg.enabled != null) {
64     environment.systemPackages = [ cfg.package gtk2_cache gtk3_cache ];
65   };
67   meta = {
68     maintainers = with lib.maintainers; [ ericsagnes ];
69     doc = ./default.xml;
70   };