mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: emacs-emojify: Update to 1.2.
* gnu/packages/emacs-xyz.scm (emacs-emojify): Update to 1.2. [arguments]: Simplify.
This commit is contained in:
parent
25bbcbae43
commit
6c83c7980f
1 changed files with 8 additions and 15 deletions
|
@ -8796,27 +8796,20 @@ (define-public emacs-tiny
|
||||||
(define-public emacs-emojify
|
(define-public emacs-emojify
|
||||||
(package
|
(package
|
||||||
(name "emacs-emojify")
|
(name "emacs-emojify")
|
||||||
(version "0.4")
|
(version "1.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
|
(uri (git-reference
|
||||||
"releases/download/v" version "/emojify-"
|
(url "https://github.com/iqbalansari/emacs-emojify")
|
||||||
version ".tar"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
|
"1fqnj5x7ivjkm5y927dqqnm85q5hzczlb0hrfpjalrhasa6ijsrm"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:include (cons "^data/" %default-include)))
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'install 'install-data
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(copy-recursively "data"
|
|
||||||
(string-append (assoc-ref outputs "out")
|
|
||||||
"/share/emacs/site-lisp/guix.d/"
|
|
||||||
"emojify-" ,version "/data"))
|
|
||||||
#t)))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-ht" ,emacs-ht)))
|
`(("emacs-ht" ,emacs-ht)))
|
||||||
(home-page "https://github.com/iqbalansari/emacs-emojify")
|
(home-page "https://github.com/iqbalansari/emacs-emojify")
|
||||||
|
|
Loading…
Reference in a new issue