summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAlexis Praga <alexis@praga.dev>2025-05-25 21:36:48 +0200
committerIan Eure <ian@retrospec.tv>2025-05-25 15:01:44 -0700
commitf96412be856e7346d3b17f78b7c8b6aefb955d0f (patch)
tree325242a004b35e18aa1daec2f1ed1b43e5b0249d /gnu
parent318ad8f173899078b98a4a8af6a9800c8700a2c5 (diff)
gnu: emacs-dash: Update to 2.20.0.
Change-Id: I3bea56c283c64c40495120d4fdd0994bb5e329db Signed-off-by: Ian Eure <ian@retrospec.tv>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm37
1 files changed, 19 insertions, 18 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c48eacfda0c..1c218fed433 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6880,26 +6880,27 @@ next matching page.")
(define-public emacs-dash
(package
(name "emacs-dash")
- (version "2.19.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/magnars/dash.el")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8"))))
+ (version "2.20.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/magnars/dash.el")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "092kf61bi6dwl42yng69g3y55ni8afycqbpaqx9wzf8frx9myg6m"))))
(build-system emacs-build-system)
(arguments
- (list #:tests? #t
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'disable-byte-compile-error-on-warn
- (lambda _
- (substitute* "Makefile"
- (("\\(setq byte-compile-error-on-warn t\\)")
- "(setq byte-compile-error-on-warn nil)")))))))
+ (list
+ #:tests? #t
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-byte-compile-error-on-warn
+ (lambda _
+ (substitute* "Makefile"
+ (("\\(setq byte-compile-error-on-warn t\\)")
+ "(setq byte-compile-error-on-warn nil)")))))))
(home-page "https://github.com/magnars/dash.el")
(synopsis "Modern list library for Emacs")
(description "This package provides a modern list API library for Emacs.")