gnu: Add emacs-dictionary.

* gnu/packages/emacs-xyz.scm (emacs-dictionary): New variable.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
Simon South 2021-08-31 14:52:57 -04:00 committed by Arun Isaac
parent 5ee38c4672
commit bc68f23aad
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -102,6 +102,7 @@
;;; Copyright © 2021 Dhruvin Gandhi <contact@dhruvin.dev>
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
;;; Copyright © 2021 Simon South <simon@simonsouth.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -29358,6 +29359,27 @@ (define-public emacs-cwl-mode
@acronym{CWL, Common Workflow Language} files.")
(license license:gpl3+)))
(define-public emacs-dictionary
(package
(name "emacs-dictionary")
(version "1.11")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/myrkr/dictionary-el")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0zsjbpq0s0xdxd9r541f04bj1khhgzhdlzr0m4p17zjh1zardbpi"))))
(build-system emacs-build-system)
(home-page "http://www.myrkr.in-berlin.de/dictionary/index.html")
(synopsis "Emacs client for dictionary servers")
(description "This package provides commands for interacting with a
dictionary server (as defined by RFC 2229; by default, the public server at
dict.org) from within Emacs.")
(license license:gpl2+)))
(define-public emacs-multitran
(package
(name "emacs-multitran")