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")