From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: [PATCH 1/5] gnu: Add emacs-ht. Date: Thu, 26 Jan 2017 13:31:15 +0100 Message-ID: <20170126123119.18942-2-m.othacehe@gmail.com> References: <20170126123119.18942-1-m.othacehe@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWjDR-0001ha-P4 for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWjDN-0003wp-Ig for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:49 -0500 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:33557) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cWjDN-0003v5-D8 for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:45 -0500 Received: by mail-wm0-x243.google.com with SMTP id r144so50155235wme.0 for ; Thu, 26 Jan 2017 04:31:43 -0800 (PST) In-Reply-To: <20170126123119.18942-1-m.othacehe@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-ht): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index d3e64c04f..699d41712 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3645,3 +3645,28 @@ Streams are implemented as delayed evaluation of cons cells.") (description "This package provides expression based interactive search procedures for emacs-lisp-mode.") (license license:gpl3+)))) + +(define-public emacs-ht + (package + (name "emacs-ht") + (version "20161015.1945") + (source + (origin + (method url-fetch) + (uri (string-append + "http://melpa.org/packages/ht-" + version + ".el")) + (sha256 + (base32 + "1ar6rw0vl18pws72nm167jfxn9vzl8ngnh1xw3npfk19x3y6n5g6")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-dash" ,emacs-dash))) + (home-page "https://github.com/Wilfred/ht.el") + (synopsis + "Hash table library for Emacs") + (description + "This package simplifies the use of hash tables in elisp. It also +provides functions to convert hash tables from and to alists and plists.") + (license license:gpl3+))) + -- 2.11.0