diff options
author | Jelle Licht <jlicht@fsfe.org> | 2023-02-20 12:38:33 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2023-03-06 14:58:57 +0100 |
commit | 3f222cd5ad16a8447e4230126c451f833cdc1f9c (patch) | |
tree | e65f76de18f5b27fe49e59c0732c27ed2be4901f | |
parent | 6494f93e21a230ff44a62ca0fe642737537858fe (diff) | |
download | guix-3f222cd5ad16a8447e4230126c451f833cdc1f9c.tar guix-3f222cd5ad16a8447e4230126c451f833cdc1f9c.tar.gz |
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.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9c914ce5a4..39e6770061 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -28151,6 +28151,8 @@ and Projectile.") "--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 @@ and Projectile.") (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 |