mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: emacs-list-utils: Update to 0.4.6-1.0dec8c0.
* gnu/packages/emacs-xyz.scm (emacs-list-utils): Update to 0.4.6-1.0dec8c0. [arguments]: Remove the upstreamed 'patch-require-cl phase. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
1a6be55701
commit
c5d68c6d12
1 changed files with 21 additions and 25 deletions
|
@ -18731,31 +18731,27 @@ (define-public emacs-helm-gtags
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-list-utils
|
||||
(package
|
||||
(name "emacs-list-utils")
|
||||
(version "0.4.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rolandwalker/list-utils")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "07hbz2md52ccy95gv4d5n6szrfmpfqf3w4kwqdg2cf54c7kgf7hw"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-require-cl
|
||||
(lambda _
|
||||
(substitute* "list-utils.el"
|
||||
(("\\(require 'cl\\)") "(require 'cl-lib)"))
|
||||
#t)))))
|
||||
(home-page "https://github.com/rolandwalker/list-utils")
|
||||
(synopsis "List-manipulation utility functions")
|
||||
(description "This package provides a list manipulation library for Emacs.")
|
||||
(license license:gpl3+)))
|
||||
;; Use a git snapshot until upstream fixes the build with emacs 28.1.
|
||||
;; See <http://issues.guix.gnu.org/55558>.
|
||||
(let ((commit "0dec8c02962d2591766739e37c5714ba21133093") (revision "1"))
|
||||
(package
|
||||
(name "emacs-list-utils")
|
||||
(version (git-version "0.4.6" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rolandwalker/list-utils")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"11nm8649a131bn2kwj4fxkiijdx2d4f1byx7a985zlb3bzdwnaw8"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/rolandwalker/list-utils")
|
||||
(synopsis "List-manipulation utility functions")
|
||||
(description
|
||||
"This package provides a list manipulation library for Emacs.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-parsec
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue