guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 48a2329a666be8ae894e7166864cf22a9abd701c
Author: Orahcio FelĂcio de Sousa <[email protected]>
AuthorDate: Fri Sep 4 10:10:41 2026 -0300
gnu: node-has-flag: Update to 4.0.0.
* gnu/packages/node-xyz.scm (node-has-flag): Update to 4.0.0.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/node-xyz.scm | 32 ++++++++++++++++++--------------
1 file changed, 18 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index ba986773ff4..61d188330f3 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -1533,22 +1533,26 @@ clean task of each project.")
(define-public node-has-flag
(package
(name "node-has-flag")
- (version "3.0.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/sindresorhus/has-flag")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0wz3ihagci5nk2fawbw2pfprnqbhlvxi79ikvrn4kkhh3vfn85q2"))))
+ (version "4.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sindresorhus/has-flag")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14acxip075a6wbgzg91valcsb12z82bi90iinam10015cy545qch"))))
(build-system node-build-system)
- (arguments (list
+ (arguments
+ (list
#:tests? #f ; FIXME: Tests require 'xo' and 'ava'.
- #:phases #~(modify-phases %standard-phases
- (add-before 'patch-dependencies 'modify-package (lambda _
- (modify-json
- (delete-dev-dependencies)))))))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'patch-dependencies 'modify-package
+ (lambda _
+ (modify-json
+ (delete-dev-dependencies)))))))
(synopsis "Check if argv has a specific flag")
(description "Check if argv has a specific flag
Correctly stops looking after an -- argument terminator.")