guix_mirror_bot pushed a commit to branch master
in repository guix.

commit ac9b00e91b1f376bae6b59195a5edfedebb8131e
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Wed Jun 10 16:28:20 2026 +0900

    gnu: Add node-boolbase.
    
    * gnu/packages/node-xyz.scm (node-boolbase): New variable.
    
    Change-Id: I2683d2925cba4640330ba83f7c0e87ea1d530b86
---
 gnu/packages/node-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 0c59a1bedf..3d8e10f40c 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -326,6 +326,34 @@ regular expressions as well!")
 addons in a wide array of potential locations.")
     (license license:expat)))
 
+(define-public node-boolbase
+  (package
+    (name "node-boolbase")
+    (version "2.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/fb55/boolbase";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1g19jwrqv5vwy9vbviw5pkaic3kd1v98b3agwz27r4wlma4afl5y"))))
+    (build-system node-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'neuter-prepare-script
+            (lambda _
+              (modify-json (delete-fields '("scripts.prepare"))))))))
+    (native-inputs (list node-typescript))
+    (home-page "https://github.com/fb55/boolbase";)
+    (synopsis "Two functions: One that returns true, one that returns false")
+    (description "This Node.js module provides two functions: one that returns
+true, one that returns false.")
+    (license license:isc)))
+
 (define-public node-brace-expansion-1
   (package
     (name "node-brace-expansion")

Reply via email to