From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH 1/2] gnu: Add emacs-bui. Date: Thu, 15 Dec 2016 17:48:48 +0300 Message-ID: <20161215144849.2990-2-alezost@gmail.com> References: <20161215144849.2990-1-alezost@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33224) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cHXMb-0000Sr-3i for guix-devel@gnu.org; Thu, 15 Dec 2016 09:50:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cHXMY-0007NH-1a for guix-devel@gnu.org; Thu, 15 Dec 2016 09:50:29 -0500 Received: from mail-wj0-f193.google.com ([209.85.210.193]:36783) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cHXMX-000787-RS for guix-devel@gnu.org; Thu, 15 Dec 2016 09:50:25 -0500 Received: by mail-wj0-f193.google.com with SMTP id j10so10157084wjb.3 for ; Thu, 15 Dec 2016 06:50:03 -0800 (PST) Received: from localhost.localdomain ([217.107.194.135]) by smtp.gmail.com with ESMTPSA id 137sm521451lfz.2.2016.12.15.06.49.01 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 15 Dec 2016 06:49:01 -0800 (PST) In-Reply-To: <20161215144849.2990-1-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" To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-bui): New variable. --- gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5e6b99f..d95c683 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1245,6 +1245,30 @@ and stored in memory.") (description "This package provides a modern list API library for Emacs.") (license license:gpl3+))) +(define-public emacs-bui + (package + (name "emacs-bui") + (version "1.0.1") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/alezost/bui.el/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0vsh1v99xxm6hhqp0vg9fbs230kawa7xb5dnd8fidf3vwm622aqh")))) + (build-system emacs-build-system) + (propagated-inputs + `(("dash" ,emacs-dash))) + (home-page "https://github.com/alezost/bui.el") + (synopsis "Buffer interface library for Emacs") + (description + "BUI (Buffer User Interface) is a library for making @code{list} and +@code{info} interfaces to display an arbitrary data of the same +type, for example: packages, buffers, files, etc.") + (license license:gpl3+))) + (define-public emacs-d-mode (package (name "emacs-d-mode") -- 2.10.2