blob: 0b9b19d4771d0faab06b23bd33a453496e34a219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
(define-module (jd packages emacs)
#:use-module (gnu packages emacs-xyz)
#:use-module (gnu packages)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system emacs)
#:use-module ((guix licenses) #:prefix license:)
#:export (emacs-org-roam-ui
emacs-lsp-mode!))
(define emacs-org-roam-ui
(let ((commit "9474a254390b1e42488a1801fed5826b32a8030b")
(revision "0"))
(package
(name "emacs-org-roam-ui")
(version (git-version "0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/org-roam/org-roam-ui")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0v54vxh95izch74wz2dl2dkdqicbvshra55l6qvd4xl5qmfhpjdc"))))
(build-system emacs-build-system)
(arguments
`(#:include (cons "^out" %default-include)))
(propagated-inputs
(list emacs-org-roam emacs-websocket emacs-simple-httpd emacs-f))
(home-page "https://github.com/org-roam/org-roam-ui")
(synopsis "A graphical frontend for your org-roam Zettelkasten")
(description " Org-Roam-UI is a frontend for exploring and interacting
with your @code{org-roam} notes. It is meant a successor of
@code{org-roam-server} that extends functionality of org-roam with a Web app
that runs side-by-side with Emacs.")
(license license:gpl3+))))
(define emacs-lsp-mode!
(let ((commit "808c4d0ab9f19bb92c56716cf59df89432b63f5d")
(revision "1"))
(package
(inherit emacs-lsp-mode)
(name "emacs-lsp-mode")
(version (git-version "8.0.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-lsp/lsp-mode")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0ridjhzndwjj8947vabq05njgnns74hi69x77axgcbv1c4nasz2y")))))))
|