From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 04/10] gnu: Add emacs-projectile. Date: Wed, 1 Jun 2016 10:05:32 -0400 Message-ID: <20160601140538.20311-4-dthompson2@worcester.edu> References: <20160601140538.20311-1-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b86n7-0007QX-Km for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b86n1-0004fZ-Se for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:36 -0400 Received: from mail-qg0-x243.google.com ([2607:f8b0:400d:c04::243]:34180) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b86n1-0004fR-Oh for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:31 -0400 Received: by mail-qg0-x243.google.com with SMTP id z67so6688006qgz.1 for ; Wed, 01 Jun 2016 07:06:31 -0700 (PDT) In-Reply-To: <20160601140538.20311-1-dthompson2@worcester.edu> 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 Cc: David Thompson From: David Thompson * gnu/packages/emacs.scm (emacs-projectile): New variable. --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index cd64383..1b54439 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1861,3 +1861,29 @@ strings, and code folding.") "Markdown-mode is a major mode for editing Markdown-formatted text files in Emacs.") (license license:gpl3+))) + +(define-public emacs-projectile + (package + (name "emacs-projectile") + (version "0.13.0") + (source (origin + (method url-fetch) + (uri (string-append "https://raw.githubusercontent.com/bbatsov" + "/projectile/v" version "/projectile.el")) + (file-name (string-append "projectile-" version ".el")) + (sha256 + (base32 + "1pc6xb61hzxzc5hkqkli1ab0s7wz0rfgx4kcn9y30ksvhw18smbz")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-pkg-info" ,emacs-pkg-info))) + (home-page "https://github.com/bbatsov/projectile") + (synopsis "Manage and navigate projects in Emacs easily") + (description + "This library provides easy project management and navigation. The +concept of a project is pretty basic - just a folder containing special file. +Currently git, mercurial and bazaar repos are considered projects by default. +If you want to mark a folder manually as a project just create an empty +.projectile file in it.") + (license license:gpl3+))) -- 2.8.3