From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Jordan Subject: [Patch] Updated patch for emacs-helm Date: Tue, 31 May 2016 16:39:19 -0400 Message-ID: <87lh2qx8qw.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48798) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7qSt-0003CK-3b for guix-devel@gnu.org; Tue, 31 May 2016 16:40:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7qSo-0005zj-Iv for guix-devel@gnu.org; Tue, 31 May 2016 16:40:38 -0400 Received: from forward18m.cmail.yandex.net ([5.255.216.149]:45397) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7qSm-0005yZ-Vj for guix-devel@gnu.org; Tue, 31 May 2016 16:40:34 -0400 Received: from smtp3m.mail.yandex.net (smtp3m.mail.yandex.net [77.88.61.130]) by forward18m.cmail.yandex.net (Yandex) with ESMTP id 22AD2217B2 for ; Tue, 31 May 2016 23:40:20 +0300 (MSK) Received: from smtp3m.mail.yandex.net (localhost [127.0.0.1]) by smtp3m.mail.yandex.net (Yandex) with ESMTP id E5B4927A0800 for ; Tue, 31 May 2016 23:40:20 +0300 (MSK) 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 --=-=-= Content-Type: text/plain Updated patch for review, emacs-helm. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-emacs-helm.patch Content-Description: Patch to add emacs-helm. Content-Transfer-Encoding: quoted-printable >From d6e128ccb7e2511a474e32dda0d0227e13ed811b Mon Sep 17 00:00:00 2001 From: Matthew Jordan Date: Wed, 18 May 2016 17:39:45 -0400 Subject: [PATCH] gnu: Add emacs-helm * gnu/packages/emacs.scm: Modified file. --- gnu/packages/emacs.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5d6db5a..8771500 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -9,6 +9,7 @@ ;;; Copyright =C2=A9 2016 Chris Marusich ;;; Copyright =C2=A9 2015, 2016 Christopher Allan Webber ;;; Copyright =C2=A9 2016 humanitiesNerd +;;; Copyright =C2=A9 2016 Matthew Jordan ;;; ;;; This file is part of GNU Guix. ;;; @@ -38,6 +39,7 @@ #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system trivial) #:use-module (gnu packages) + #:use-module (gnu packages version-control) #:use-module (gnu packages guile) #:use-module (gnu packages gtk) #:use-module (gnu packages gnome) @@ -1706,3 +1708,31 @@ It is recommended to use @code{clojure-mode} with = paredit or smartparens.") The purpose of this library is to wrap all the quirks and hassle of @code{package.el} into a sane API.") (license license:gpl3+))) + +(define-public emacs-helm + (package + (name "emacs-helm") + (version "1.9.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/" name "/helm/archive/v" + version ".tar.gz")) + (sha256 + (base32 "1fjgmjxjwqp55gh4z9jxh28gzbdixkdkg9869dn3c4g8qzy2= hg35")))) + (inputs `(("git" ,git))) + (propagated-inputs + `(("dash" ,emacs-dash) + ("texinfo" ,texinfo))) + (build-system emacs-build-system) + (home-page "https://emacs-helm.github.io/helm/") + (synopsis "Helm is incremental completion and selection narrowing +framework for Emacs") + (description "Helm is incremental completion and selection narrowing +framework for Emacs. It will help steer you in the right direction when= you're +looking for stuff in Emacs (like buffers, files, etc). Helm is a fork o= f +anything.el originally written by Tamas Patrovic and can be considered t= o be +its successor. Helm sets out to clean up the legacy code in anything.el= and +provide a cleaner, leaner and more modular tool, that's not tied in the = trap +of backward compatibility.") + (license license:gpl3+))) --=20 2.8.3 --=-=-= Content-Type: text/plain -- Matthew Jordan Sent with my mu4e --=-=-=--