diff options
author | Hilton Chain <hako@ultrarare.space> | 2022-11-20 14:05:32 +0800 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-21 14:25:14 +0000 |
commit | 3b353873f44617ac10b3232ea43bd332c980f66b (patch) | |
tree | 61a050f76fb9fdb020bb2bcc223fc8c5e738fc56 /gnu | |
parent | 760d683d2c4b080b47f8ad86f220658cf59c1a59 (diff) | |
download | guix-3b353873f44617ac10b3232ea43bd332c980f66b.tar.gz |
gnu: Add emacs-flim-lb.
* gnu/packages/emacs-xyz.scm (emacs-flim-lb): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9c3aa575fe..a02671e287 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -33935,6 +33935,34 @@ Lisp programs. APEL-LB is a variant of APEL, which features supports to latest Emacs.") (license license:gpl2+)))) +(define-public emacs-flim-lb + ;; No release since Nov 28, 2007. + (let ((version "1.14.9") + (revision "133") + (commit "57c6b868aa314717f40a520daed7249665e8d992")) + (package + (name "emacs-flim-lb") + (version (git-version version revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wanderlust/flim") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1mf8r5mf3bd0719fnhifb6lfvl7n4m552crcdhkbkkif8srrl6df")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-apel-lb emacs-oauth2)) + (home-page "https://www.emacswiki.org/emacs/WanderLust") + (synopsis + "Library for basic features about message representation or encoding") + (description + "FLIM is a library to provide basic features about message representation +or encoding. FLIM-LB is a variant of FLIM, which features supports to latest +Emacs.") + (license license:gpl2+)))) + (define-public emacs-waveform ;; XXX: Upstream provides no Version keyword. Using 0 as base version. (let ((commit "ee52c6a72b3e9890743e3a6e2fc1f3195f5687b2") |