;;; Whispers --- Stealth VPN and ssh tunneler ;;; Copyright © 2024 Runciter ;;; ;;; This file is part of Whispers. ;;; ;;; Whispers is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; Whispers is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with Whispers. If not, see . (define-module (whispers services dict) #:use-module (guix gexp) #:use-module (gnu services dict) #:use-module (whispers packages dict) #:use-module (gnu packages dictionaries) #:export (%dictorg-handler %cedict-dictorg-databases)) (define %dictorg-handler (dicod-handler (name "dictorg") (module "dictorg") (options (list #~(string-append "dbdir=/"))))) (define (cedict-dictorg-database variant) "Return a record of type @code{} that configures a database for the CC-CEDICT chinese-english multilingual dictionary variant described by the string VARIANT." (dicod-database (name (string-append "cedict-" variant)) (complex? #t) (handler "dictorg") (options (list #~(string-append "database=" #$cc-cedict "/share/cc-cedict/cedict-" #$variant))))) (define %cedict-dictorg-databases (map cedict-dictorg-database (list "bare" "numb" "pinyin" "smpl" "trad")))