From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49161) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNqFT-0006y0-Qa for guix-patches@gnu.org; Sun, 12 Apr 2020 23:59:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNqFS-0004eG-LM for guix-patches@gnu.org; Sun, 12 Apr 2020 23:59:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47538) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNqFS-0004e7-Hl for guix-patches@gnu.org; Sun, 12 Apr 2020 23:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jNqFS-0004fQ-IG for guix-patches@gnu.org; Sun, 12 Apr 2020 23:59:02 -0400 Subject: [bug#40591] Add emacs-org-roam Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49124) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNqEh-0006v0-PD for guix-patches@gnu.org; Sun, 12 Apr 2020 23:58:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNqEg-0004I1-B5 for guix-patches@gnu.org; Sun, 12 Apr 2020 23:58:15 -0400 Received: from mout01.posteo.de ([185.67.36.65]:54896) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jNqEf-0004H5-Rl for guix-patches@gnu.org; Sun, 12 Apr 2020 23:58:14 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id F2ED316005C for ; Mon, 13 Apr 2020 05:58:10 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 490vwd5jn5z6tmD for ; Mon, 13 Apr 2020 05:58:09 +0200 (CEST) From: Alberto EFG Date: Sun, 12 Apr 2020 22:58:03 -0500 Message-ID: <87h7xovxys.fsf@posteo.mx> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40591@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello. Added emacs-org-roam. I used it all day, seems like everything works. guix size is around 0.2 MB --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-emacs-org-roam.patch Content-Transfer-Encoding: quoted-printable >From a112e0b9f57125ecc1ae0418734521722d87e27e Mon Sep 17 00:00:00 2001 From: Alberto Eleuterio Flores Guerrero Date: Sun, 12 Apr 2020 14:01:24 -0500 Subject: [PATCH] gnu: Add emacs-org-roam. * gnu/packages/emacs-xyz.scm (emacs-org-roam): New variable. --- gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f55d1a5bf4..0f1c48be2e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -67,6 +67,7 @@ ;;; Copyright =C2=A9 2020 6033fe7de85d <6033fe7de85d@airmail.cc> ;;; Copyright =C2=A9 2020 John Soo ;;; Copyright =C2=A9 2020 J=C3=A9r=C3=A9my Korwin-Zmijowski +;;; Copyright =C2=A9 2020 Alberto Eleuterio Flores Guerrero ;;; ;;; This file is part of GNU Guix. ;;; @@ -22300,3 +22301,34 @@ conventions.") (description "Haskell-Snippets is a collection of YASnippet Haskell snippets for Emacs.") (license license:expat)))) + +(define-public emacs-org-roam + (package + (name "emacs-org-roam") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jethrokuan/org-roam.git") + (commit "1433dbc31602c412914c71ecc81aa5dcf6b03daf"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "08pfa63k194dpk0y2gfa0nzn5lig81q0l9axkq5j4ibj6ifaap4a")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-company" ,emacs-company) + ("emacs-emacsql-sqlite" ,emacs-emacsql) + ("emacs-dash" ,emacs-dash) + ("emacs-f" ,emacs-f) + ("emacs-s" ,emacs-s) + ("emacs-org-ref" ,emacs-org-ref))) + (home-page "https://github.com/jethrokuan/org-roam") + (synopsis "Org-mode non-hierarchical notes") + (description "@code{emacs-org-roam} is a solution for taking +non-hierarchical notes with @code{org-mode}. Notes are captured +without hierarchy and are connected by tags. Notes can be found +and created quickly. Org-roam should also work as a plug-and-play + solution for anyone already using Org-mode for their personal wiki.") + (license license:gpl3))) --=20 2.26.0 --=-=-=--