blob: 9798d88b8277a02a0531270943acaed9e03d5525 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
;;; Whispers --- Stealth VPN and ssh tunneler
;;; Copyright © 2024 Runciter <runciter@whispers-vpn.org>
;;;
;;; 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 <http://www.gnu.org/licenses/>.
(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{<dicod-database>} 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")))
|