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:
Nicolas Goaziou 2024-06-18 16:03:33 +02:00
parent 754effe1c2
commit de4fbf8f6b
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")