mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
gnu: Add emacs-svg-icon.
* gnu/packages/emacs-xyz.scm (emacs-svg-icon): New variable.
This commit is contained in:
parent
d21f251a35
commit
2cb4ff0321
1 changed files with 24 additions and 0 deletions
|
@ -15973,6 +15973,30 @@ (define-public emacs-svg-tag-mode
|
||||||
or expressions with SVG rounded box labels that are fully customizable.")
|
or expressions with SVG rounded box labels that are fully customizable.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-svg-icon
|
||||||
|
(let ((commit "ebc2b8d0f6c680fd575a90e683cc7b832acd1eb7")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-svg-icon")
|
||||||
|
(version (git-version "0.1" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/rougier/emacs-svg-icon")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1qzqfa8xyw1nkb89kbvw9qcgdwr8g017n8gf3yzwn816qhkfkjrj"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/rougier/emacs-svg-icon")
|
||||||
|
(synopsis "Emacs library to create SVG icons on the fly")
|
||||||
|
(description "This library allows to create SVG icons by parsing remote
|
||||||
|
collections whose license are compatibles with Emacs. The default size of an
|
||||||
|
icon is exactly 2x1 characters such that it can be inserted inside a text
|
||||||
|
without disturbing alignment.")
|
||||||
|
(license (list license:gpl3+)))))
|
||||||
|
|
||||||
(define-public emacs-sourcemap
|
(define-public emacs-sourcemap
|
||||||
(package
|
(package
|
||||||
(name "emacs-sourcemap")
|
(name "emacs-sourcemap")
|
||||||
|
|
Loading…
Reference in a new issue