mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: emacs-yasnippet-snippets: Update to 1.1.
* gnu/packages/emacs-xyz.scm (emacs-yasnippet-snippets): Update to 1.1. [arguments]: Use G-expressions. <#:phases>: Set home to prevent a build failure. Change-Id: Ifcbb9e71380a9eed941b739d7aeac135866e8309
This commit is contained in:
parent
754effe1c2
commit
de4fbf8f6b
1 changed files with 9 additions and 3 deletions
|
@ -18315,7 +18315,7 @@ (define-public emacs-yasnippet
|
|||
(define-public emacs-yasnippet-snippets
|
||||
(package
|
||||
(name "emacs-yasnippet-snippets")
|
||||
(version "1.0")
|
||||
(version "1.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -18324,10 +18324,16 @@ (define-public emacs-yasnippet-snippets
|
|||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0m78jxhjyf4212ig2ncxr6bhhd6yx4c3nc8x4ylamzq21x4fl21r"))))
|
||||
(base32 "0p38k8a3l9vpph1g2a6wz40y30wb2nhp770rv8947bxzjc5xc0gf"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:include (cons* "^snippets\\/" %default-include)))
|
||||
(list
|
||||
#:include #~(cons* "^snippets\\/" %default-include)
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'build 'set-home
|
||||
(lambda _
|
||||
(setenv "HOME" (getcwd)))))))
|
||||
(propagated-inputs
|
||||
(list emacs-yasnippet))
|
||||
(home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
|
||||
|
|
Loading…
Reference in a new issue