diff options
author | Hilton Chain <hako@ultrarare.space> | 2022-11-20 14:05:53 +0800 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-21 14:25:14 +0000 |
commit | 1c839fb7bc3e5766908288a22034a8adede62adb (patch) | |
tree | 5be2946ef2ed734c74de3bf331ac40fb38d1ac8d /gnu | |
parent | 3b353873f44617ac10b3232ea43bd332c980f66b (diff) | |
download | guix-1c839fb7bc3e5766908288a22034a8adede62adb.tar.gz guix-1c839fb7bc3e5766908288a22034a8adede62adb.zip |
gnu: Add emacs-semi-epg.
* gnu/packages/emacs-xyz.scm (emacs-semi-epg): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a02671e287..826d60f46d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -33963,6 +33963,33 @@ or encoding. FLIM-LB is a variant of FLIM, which features supports to latest Emacs.") (license license:gpl2+)))) +(define-public emacs-semi-epg + ;; No release since Dec 24, 2003. + (let ((version "1.14.6") + (revision "241") + (commit "ac3e726ca94ed245c25881ec8d7177d0d834ea6a")) + (package + (name "emacs-semi-epg") + (version (git-version version revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wanderlust/semi") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bg07y6svvg1mmlr455x3j1anjp3wbv27s6b2inp294rbwprm41n")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-bbdb-vcard emacs-flim-lb)) + (home-page "https://www.emacswiki.org/emacs/WanderLust") + (synopsis "Library to provide MIME feature for GNU Emacs") + (description + "SEMI is a package for GNU Emacs to provide features related with MIME +user interface. SEMI-EPG is a variant of SEMI, which features supports to +EasyPG and latest Emacs.") + (license license:gpl2+)))) + (define-public emacs-waveform ;; XXX: Upstream provides no Version keyword. Using 0 as base version. (let ((commit "ee52c6a72b3e9890743e3a6e2fc1f3195f5687b2") |