rekahsoft-gnu/packages/emacs-xyz.scm: Fix emacs-roam-server

This commit is contained in:
Collin J. Doering 2021-01-03 20:31:24 -05:00
parent 9f019657c6
commit 747c1d6dcf
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 5 additions and 2 deletions

View File

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