From 0e24818db4f22cff0d841b7b77866121e0f2d6a5 Mon Sep 17 00:00:00 2001 From: Ryan Desfosses Date: Mon, 7 Dec 2020 18:17:52 -0500 Subject: [PATCH 1/2] gnu: Add emacs-map * gnu/packages/emacs-xyz.scm (emacs-map): New variable. --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8a03b2d7a3..77d314e5f3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25728,3 +25728,24 @@ syntax highlighting and UI components.") "This Emacs package provides a Janet REPL to evaluate @code{janet-mode} s-expression.") (license license:expat)))) + +(define-public emacs-map + (package + (name "emacs-map") + (version "2.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://elpa.gnu.org/packages/map-" version ".el")) + (sha256 + (base32 + "0ydz5w1n4vwhhzxxj003s7jv8n1wjijwfryk5z93bwhnr0cak0i0")))) + (build-system emacs-build-system) + (home-page + "http://elpa.gnu.org/packages/map.html") + (synopsis "Map manipulation functions") + (description + "map.el provides map-manipulation functions that work on alists, +hash-table and arrays. All functions are prefixed with \"map-\".") + (license license:gpl3+))) -- 2.29.2