GNU bug report logs -
#54023
[PATCH] gnu: Add node-isexe.
Previous Next
To reply to this bug, email your comments to 54023 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#54023
; Package
guix-patches
.
(Wed, 16 Feb 2022 06:22:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Matthew James Kraai <kraai <at> ftbfs.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 16 Feb 2022 06:22:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/node-xyz.scm (node-isexe): New variable.
---
gnu/packages/node-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 87892410f9..1659d1e56b 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2021 Noisytoot <noisytoot <at> disroot.org>
;;; Copyright © 2021 Charles <charles.b.jackson <at> protonmail.com>
;;; Copyright © 2021 Philip McGrath <philip <at> philipmcgrath.com>
+;;; Copyright © 2022 Matthew James Kraai <kraai <at> ftbfs.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -131,6 +132,34 @@ (define-public node-far
codes.")
(license license:expat)))
+(define-public node-isexe
+ (package
+ (name "node-isexe")
+ (version "2.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/isaacs/isexe")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "18rh937j0m0jkzdxfdvvjv6nsdbrdqipnq7nvv1ab7b7rjyw5id3"))))
+ (build-system node-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'patch-dependencies 'delete-dependencies
+ (lambda args
+ (delete-dependencies `("mkdirp"
+ "rimraf"
+ "tap")))))
+ #:tests? #f))
+ (home-page "https://github.com/isaacs/isexe#readme")
+ (synopsis "Node.js package to check if a file is executable and a normal file")
+ (description "Check if a file is executable and a normal file.")
+ (license license:isc)))
+
(define-public node-long-stack-traces
(package
(name "node-long-stack-traces")
--
2.34.0
This bug report was last modified 3 years and 26 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.