diff options
| author | Chris Wells <chris@mathematicaster.org> | 2024-01-25 11:26:31 -0600 |
|---|---|---|
| committer | Chris Wells <chris@mathematicaster.org> | 2024-01-25 11:26:31 -0600 |
| commit | 45156e2bdb359c22398f8c7a60fb729ad168786a (patch) | |
| tree | e8e8ca1e9a1b4505df1187028091f9cf2b173ef9 /modules/redux/plato.nix | |
| parent | d6949fe35c1b4c7a9e93d1430e5c1b1d5dd4d9c6 (diff) | |
| download | kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.tar kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.tar.gz kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.tar.bz2 kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.tar.lz kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.tar.xz kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.tar.zst kobo-manager-45156e2bdb359c22398f8c7a60fb729ad168786a.zip | |
This distribution is coming together
Diffstat (limited to 'modules/redux/plato.nix')
| -rw-r--r-- | modules/redux/plato.nix | 179 |
1 files changed, 0 insertions, 179 deletions
diff --git a/modules/redux/plato.nix b/modules/redux/plato.nix deleted file mode 100644 index 6735133..0000000 --- a/modules/redux/plato.nix +++ /dev/null @@ -1,179 +0,0 @@ -{ config, pkgs, lib, options, ... }: -with builtins // lib; -let - cfg = config.plato; - toml = pkgs.formats.toml {}; -in { - imports = [ - ./nickle.nix - ]; - - options.plato = { - enable = mkEnableOpiton "Plato"; - - path = mkOption { - type = types.srt; - default = ".adds/plato"; - description = "Relative path to Plato within src"; - }; - - file = mkOption { - type = options.file.type; - default = {}; - description = "Files relative to ${cfg.path}"; - }; - - nickleEntry = mkEnableOption "Launch Plato directly from NickleMenu"; - - config = mkOption { - type = types.lines; - default = ""; - description = "Plato config.sh"; - }; - - hyphenation = mkEnableOption "hyphenation" // { default = true; }; - - convertDictionaries = mkEnableOption "convert StarDict" // { default = true; }; - - setFramebufferDepth = mkEnableOption "set framebuffer's depth" // { default = true; }; - - settings = mkOption { - type = toml.type; - default = {}; - description = "Plato Settings.toml"; - }; - - css = mkOption { - default = {}; - type = with types; attrsOf lines; - description = '' - css style sheets. - Only use this for epub-user dictionary-user html-user - ''; - }; - - scripts = mkOption { - default = {}; - type = with types; attrsOf lines; - description = '' - Only use this for wifi-post-up wifi-post-down wifi-pre-up wifi-pre-down. - ''; - # apply = mapAttrs (_: text: '' - # #!/bin/sh - - # ${text} - # '') - }; - - dictionaries = mkOption { - type = with types; listOf package; - default = []; - }; - - allDictionaries = mkOption { - type = types.package; - readOnly = true; - internal = true; - default = pkgs.runCommand "PlatoDictionaries" {} ('' - mkdir -p $out - '' + concatMapStringsSep "\n" (pkg: '' - find ${pkg}/share/dictd/ -type f -regex '.*\.\(dict\(\.dz\)?\|index\)' -exec cp -v {} $out/ \; - '') cfg.dictionaries - ); - - }; - - fonts = mkOption { - type = with types; listOf package; - default = []; - }; - - allFonts = mkOption { - type = types.package; - readOnly = true; - internal = true; - default = pkgs.runCommand "PlatoFonts" {} ('' - mkdir -p $out - '' + concatMapStringsSep "\n" (pkg: '' - find ${pkg}/share/fonts/truetype/ -type f -regex '.*\.\(ttf\|otf\)' -exec cp -v {} $out/ \; - '') cfg.fonts - ); - - }; - }; - - config = mkIf cfg.enable { - plato = { - config = concatStringsSep "\n\n" ( - optional (!cfg.convertDictionaries) '' - unset PLATO_CONVERT_DICTIONARIES - '' - ++ - optional (!cfg.setFramebufferDepth) '' - unset PLATO_SET_FRAMEBUFFER_DEPTH - '' - ++ - optional (!cfg.hyphenation) '' - [ -d hyphenation-patterns ] && rm -rf hyphenation-patterns - '' - ); - file = mkMerge [ - (mkIf (cfg.settings != {}) { - "Settings.toml".source = toml.generate "Settings.toml" cfg.settings; - }) - - (mkIf (cfg.config != "") { - "config.sh".text = cfg.config; - }) - - (mapAttrs' (n: text: - let - n1 = if hasPrefix "css/" n then n else "css/${n}"; - name = if hasSuffix ".css" n1 then n1 else "{n1}.css"; - in { - inherit name; - value = { inherit text; } - }) cfg.css) - - (mapAttrs' (n: t: - let - n1 = if hasPrefix "scripts/" n then n else "scripts/${n}"; - name = if hasSuffix ".sh" n1 then n1 else "${n1}.sh"; - text = if hasPrefix "#!/" t then t else "#!/bin/sh\n\n${t}"; - in { - inherit name; - value = { inherit text; }; - }) cfg.scripts) - - { - dictionaries = { - directory = true; - source = cfg.allDictionaries; - }; - fonts = { - directory = true; - source = cfg.allFonts; - }; - } - ]; - }; - - file = mapAttrs' (n: v: { - name = "plato-${n}"; - value = v // { - target = "${cfg.path}/${v.target}"; - }; - }) cfg.file; - - nickle.menuItems = mkIf cfg.nickleEntry { - "plato" = [ - "main" - "Plato" - "cmd_spawn" - "quiet" - "exec /mnt/onboard/${cfg.path}/plato.sh" - ]; - } - - }; -} |
