mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-haskell-snippets: Update to 0.1.0-1-1c29c4a6.
* gnu/packages/emacs-xyz.scm (emacs-haskell-snippets): Update to 0.1.0-1-1c29c4a6. [arguments]: Convert to list of G-Expressions. Drop trailing ‘#t’s. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
5a2b9fc2e6
commit
a028eafcc2
1 changed files with 14 additions and 14 deletions
|
@ -29579,11 +29579,12 @@ conventions.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-haskell-snippets
|
(define-public emacs-haskell-snippets
|
||||||
;; The commit below is 5 commits ahead of release, and includes a build fix.
|
;; The commit below is 7 commits ahead of release, and includes a build fix.
|
||||||
(let ((commit "07b0f460b946fd1be26c29652cb0468b47782f3a"))
|
;; And also a fix in one snippet.
|
||||||
|
(let ((commit "1c29c4a68ce89848b8d371c6510d1de3b586c8b3"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-haskell-snippets")
|
(name "emacs-haskell-snippets")
|
||||||
(version (git-version "0.1.0" "0" commit))
|
(version (git-version "0.1.0" "1" commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -29593,20 +29594,19 @@ conventions.")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0a7y3awi9hcyahggf0ghsdwvsmrhr9yq634wy9lkqjzrm2hqj0ci"))))
|
(base32 "1lwnggarmavyf164cfzbzzkq9ffahhd3bz7gw644czs49sndcawf"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-snippets
|
(add-after 'install 'install-snippets
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let ((snippets
|
||||||
(snippets
|
|
||||||
(string-append
|
(string-append
|
||||||
out "/share/emacs/site-lisp/snippets/haskell-mode")))
|
#$output "/share/emacs/site-lisp/snippets/haskell-mode")))
|
||||||
(mkdir-p snippets)
|
(mkdir-p snippets)
|
||||||
(copy-recursively "snippets/haskell-mode" snippets)
|
(copy-recursively "snippets/haskell-mode" snippets)))))))
|
||||||
#t))))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-yasnippet))
|
(list emacs-yasnippet))
|
||||||
(home-page "https://github.com/haskell/haskell-snippets")
|
(home-page "https://github.com/haskell/haskell-snippets")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue