From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH 3/4] gnu: Add emacs-async. Date: Mon, 8 Feb 2016 17:28:03 +0300 Message-ID: <1454941684-9978-4-git-send-email-alezost@gmail.com> References: <1454941684-9978-1-git-send-email-alezost@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSmng-0001Tm-Cp for guix-devel@gnu.org; Mon, 08 Feb 2016 09:28:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aSmne-0000AN-AW for guix-devel@gnu.org; Mon, 08 Feb 2016 09:28:24 -0500 Received: from mail-lf0-x243.google.com ([2a00:1450:4010:c07::243]:36366) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSmne-0000AC-1u for guix-devel@gnu.org; Mon, 08 Feb 2016 09:28:22 -0500 Received: by mail-lf0-x243.google.com with SMTP id h198so5220696lfh.3 for ; Mon, 08 Feb 2016 06:28:21 -0800 (PST) Received: from localhost.localdomain ([217.107.192.146]) by smtp.gmail.com with ESMTPSA id rk1sm4036210lbb.0.2016.02.08.06.28.20 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 08 Feb 2016 06:28:20 -0800 (PST) In-Reply-To: <1454941684-9978-1-git-send-email-alezost@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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-async): New variable. --- gnu/packages/emacs.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 00aa885..aa308cb 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -921,6 +921,27 @@ like. It can be linked with various Emacs mail clients (Message and Mail mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.") (license license:gpl3+))) +(define-public emacs-async + (package + (name "emacs-async") + (version "1.6") + (source (origin + (method url-fetch) + (uri (string-append "http://elpa.gnu.org/packages/async-" + version ".tar")) + (sha256 + (base32 + "17psvz75n42x33my967wkgi7r0blx46n3jdv510j0z5jswv66039")))) + (build-system emacs-build-system) + (home-page "http://elpa.gnu.org/packages/async.html") + (synopsis "Asynchronous processing in Emacs") + (description + "This package provides the ability to call asynchronous functions and +processes. For example, it can be used to run dired commands (for copying, +moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used +as a library for other Emacs packages.") + (license license:gpl3+))) + (define-public emacs-auctex (package (name "emacs-auctex") -- 2.6.3