mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: emacs-lsp-treemacs: Install vscode icons.
emacs-lsp-treemacs bundles icons from both the vscode-icons/vscode-icons and microsoft/vscode-icons projects. * gnu/packages/emacs-xyz.scm (emacs-lsp-treemacs)[arguments]<#:include>: Install vscode icons. [license]: Update accordingly.
This commit is contained in:
parent
6494f93e21
commit
3f222cd5ad
1 changed files with 5 additions and 1 deletions
|
@ -28151,6 +28151,8 @@ (define-public emacs-lsp-treemacs
|
|||
"--hard-dereference"
|
||||
dir))))))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:include #~(cons "^icons\\/" %default-include)))
|
||||
(propagated-inputs
|
||||
(list emacs-lsp-mode emacs-treemacs))
|
||||
(home-page "https://github.com/emacs-lsp/lsp-treemacs")
|
||||
|
@ -28158,7 +28160,9 @@ (define-public emacs-lsp-treemacs
|
|||
(description
|
||||
"This package provides integration between LSP mode and treemacs,
|
||||
and implementation of treeview controls using treemacs as a tree renderer.")
|
||||
(license license:gpl3+)))
|
||||
(license (list license:gpl3+
|
||||
license:cc-by4.0 ; microsoft/vscode-icons
|
||||
license:expat)))) ; vscode-icons/vscode-icons
|
||||
|
||||
(define-public emacs-dap-mode
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue