* gnu/packages/emacs-xyz.scm (emacs-haskell-snippets): Update to
[arguments]: Convert to list of G-Expressions. Drop trailing ‘#t’s.
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
Toggle diff (59 lines)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7a5c6235fc..46fbefd47f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29532,11 +29532,12 @@ (define-public emacs-objed
(license license:gpl3+)))
(define-public emacs-haskell-snippets
- ;; The commit below is 5 commits ahead of release, and includes a build fix.
- (let ((commit "07b0f460b946fd1be26c29652cb0468b47782f3a"))
+ ;; The commit below is 7 commits ahead of release, and includes a build fix.
+ ;; And also a fix in one snippet.
+ (let ((commit "1c29c4a68ce89848b8d371c6510d1de3b586c8b3"))
(name "emacs-haskell-snippets")
- (version (git-version "0.1.0" "0" commit))
+ (version (git-version "0.1.0" "1" commit))
@@ -29546,20 +29547,19 @@ (define-public emacs-haskell-snippets
(file-name (git-file-name name version))
- (base32 "0a7y3awi9hcyahggf0ghsdwvsmrhr9yq634wy9lkqjzrm2hqj0ci"))))
+ (base32 "1lwnggarmavyf164cfzbzzkq9ffahhd3bz7gw644czs49sndcawf"))))
(build-system emacs-build-system)
- (modify-phases %standard-phases
- (add-after 'install 'install-snippets
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-snippets
- out "/share/emacs/site-lisp/snippets/haskell-mode")))
- (copy-recursively "snippets/haskell-mode" snippets)
+ #$output "/share/emacs/site-lisp/snippets/haskell-mode")))
+ (copy-recursively "snippets/haskell-mode" snippets)))))))
(home-page "https://github.com/haskell/haskell-snippets")