From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43345) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fX1LS-0000XA-5D for guix-patches@gnu.org; Sun, 24 Jun 2018 05:30:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fX1LO-0006mN-VE for guix-patches@gnu.org; Sun, 24 Jun 2018 05:30:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53997) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fX1LO-0006mE-RK for guix-patches@gnu.org; Sun, 24 Jun 2018 05:30:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fX1LO-0006Fg-Ja for guix-patches@gnu.org; Sun, 24 Jun 2018 05:30:02 -0400 Subject: [bug#31954] [PATCH] gnu: Add emacs-org-brain. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43307) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fX1LB-0000VH-Rf for guix-patches@gnu.org; Sun, 24 Jun 2018 05:29:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fX1L8-0006VN-Mm for guix-patches@gnu.org; Sun, 24 Jun 2018 05:29:49 -0400 Received: from sonic307-54.consmr.mail.ir2.yahoo.com ([87.248.110.31]:44480) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fX1L8-0006Ts-FA for guix-patches@gnu.org; Sun, 24 Jun 2018 05:29:46 -0400 From: Vasile Dumitrascu Date: Sun, 24 Jun 2018 11:29:37 +0200 Message-Id: <20180624092937.19959-1-va511e@yahoo.com> 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: 31954@debbugs.gnu.org Cc: Vasile Dumitrascu * gnu/packages/emacs.scm (emacs-org-brain): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 3b2c41c5d..616175d54 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -11277,3 +11277,28 @@ file.") "@code{wgrep-helm} allows you to edit a @code{helm-grep-mode} buffer and apply those changes to the file buffer.") (license license:gpl3+)))) + +(define-public emacs-org-brain + (let ((version "20180522") ; no proper tag, use date of commit + (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1") + (revision "1")) + (package + (name "emacs-org-brain") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Kungsgeten/org-brain.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj")))) + (build-system emacs-build-system) + (home-page "https://github.com/Kungsgeten/org-brain") + (synopsis "Org-mode wiki and concept-mapping for Emacs") + (description "@code{emacs-org-brain} implements a variant of concept +mapping in Emacs, using @code{org-mode}. It is heavily inspired by a piece of +software called The Brain.") + (license license:expat)))) -- 2.18.0