From 747c1d6dcff994c9a4fbb313289a4faf6cb85298 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Sun, 3 Jan 2021 20:31:24 -0500 Subject: [PATCH] rekahsoft-gnu/packages/emacs-xyz.scm: Fix emacs-roam-server --- rekahsoft-gnu/packages/emacs-xyz.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rekahsoft-gnu/packages/emacs-xyz.scm b/rekahsoft-gnu/packages/emacs-xyz.scm index 7d3cf5c..9a5e457 100644 --- a/rekahsoft-gnu/packages/emacs-xyz.scm +++ b/rekahsoft-gnu/packages/emacs-xyz.scm @@ -668,8 +668,11 @@ See perspective.el on github: https://github.com/nex3/perspective-el (add-after 'build 'copy-assets (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) - (assets (string-append out "/share/emacs/site-lisp/assets"))) - (copy-recursively "assets" assets))))))) + (site-lisp "/share/emacs/site-lisp") + (assets (string-append out site-lisp "/assets"))) + (copy-recursively "assets" assets) + (copy-file "index.html" + (string-append out site-lisp "/index.html")))))))) (home-page "https://github.com/org-roam/org-roam-server") (synopsis "Web Application to Visualize the Org-Roam Database")