From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35404) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewoCR-0002uv-TF for guix-patches@gnu.org; Fri, 16 Mar 2018 08:11:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewoCM-0002aU-4S for guix-patches@gnu.org; Fri, 16 Mar 2018 08:11:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56131) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ewoCL-0002aL-TY for guix-patches@gnu.org; Fri, 16 Mar 2018 08:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ewoCL-0001jx-LD for guix-patches@gnu.org; Fri, 16 Mar 2018 08:11:01 -0400 Subject: [bug#30798] [PATCH 2/2] gnu: Add emacs-deft Resent-Message-ID: From: Konrad Hinsen In-Reply-To: <87sh91u423.fsf@gmail.com> References: <87sh91u423.fsf@gmail.com> Date: Fri, 16 Mar 2018 13:10:28 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Oleg Pykhalov Cc: 30798@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-deft): New variable. --- gnu/packages/emacs.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 35acfdd20..f51f696fd 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7386,3 +7386,26 @@ inherit a login shell's environment variables. It also allows other environment variables to be retrieved from the shell, so that Emacs will see the same values you get in a terminal.") (license license:gpl3+))) + +(define-public emacs-deft + (package + (name "emacs-deft") + (version "0.8") + (source + (origin + (method url-fetch) + (uri (string-append "https://stable.melpa.org/packages/deft-" + version ".el")) + (sha256 + (base32 + "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58")))) + (build-system emacs-build-system) + (home-page "https://jblevins.org/projects/deft/") + (synopsis "Quickly browse, filter, and edit plain text notes") + (description + "Deft is an Emacs mode for quickly browsing, filtering, and editing +directories of plain text notes, inspired by Notational Velocity.") + ;; A comment in the code says "may be freely distributed and modified + ;; under the BSD license". I take this to mean the original + ;; BSD license, called bsd-4 in Guix. + (license license:bsd-4))) -- 2.16.2