[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51838] [PATCH v4 30/45] gnu: Add node-file-uri-to-path.
From: |
Philip McGrath |
Subject: |
[bug#51838] [PATCH v4 30/45] gnu: Add node-file-uri-to-path. |
Date: |
Mon, 13 Dec 2021 01:00:52 -0500 |
* gnu/packages/node-xyz.scm (node-file-uri-to-path): New variable.
---
gnu/packages/node-xyz.scm | 55 +++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index d1bb236186..bdfe71a1f3 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -24,6 +24,7 @@ (define-module (gnu packages node-xyz)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages python)
+ #:use-module (gnu packages web)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix git-download)
@@ -787,3 +788,57 @@ (define-public node-sqlite3
non-blocking bindings for SQLite3, written in modern C++ and tested for memory
leaks.")
(license license:bsd-3)))
+
+(define-public node-file-uri-to-path
+ (package
+ (name "node-file-uri-to-path")
+ (version "2.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/TooTallNate/file-uri-to-path")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08l779az44czm12xdhgcrnzpqw34s59hbrlfphs7g9y2k26drqav"))))
+ (native-inputs
+ `(("esbuild" ,esbuild)))
+ (build-system node-build-system)
+ (arguments
+ `(#:absent-dependencies
+ `("@types/mocha"
+ "@types/node"
+ "@typescript-eslint/eslint-plugin"
+ "@typescript-eslint/parser"
+ "cpy-cli"
+ "eslint"
+ "eslint-config-airbnb"
+ "eslint-config-prettier"
+ "eslint-import-resolver-typescript"
+ "eslint-plugin-import"
+ "eslint-plugin-jsx-a11y"
+ "eslint-plugin-react"
+ "mocha"
+ "rimraf"
+ "typescript")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda* (#:key inputs native-inputs #:allow-other-keys)
+ (copy-recursively "src" "dist")
+ (invoke (string-append
+ (assoc-ref (or native-inputs inputs) "esbuild")
+ "/bin/esbuild")
+ "dist/index.ts"
+ "--outfile=dist/src/index.js"
+ "--format=cjs"
+ "--sourcemap"
+ "--platform=node"))))
+ #:tests? #f))
+ (home-page "https://github.com/TooTallNate/file-uri-to-path")
+ (synopsis "Convert a @code{file:} URI to a file path")
+ (description "This package provides a function to convert a @code{file:}
+URI to a file path. It accepts a @code{file:} URI and returns a file path
+suitable for use with the @code{fs} module functions.")
+ (license license:expat)))
--
2.32.0
- [bug#51838] [PATCH v4 14/45] gnu: node-llparse-bootstrap: Use #:absent-dependencies., (continued)
- [bug#51838] [PATCH v4 14/45] gnu: node-llparse-bootstrap: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 15/45] gnu: node-semver: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 16/45] gnu: node-wrappy: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 19/45] gnu: node-irc: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 20/45] guix: node-build-system: Add implicit libuv input., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 17/45] gnu: node-once: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 18/45] gnu: node-irc-colors: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 21/45] guix: node-build-system: Add avoid-node-gyp-rebuild phase., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 28/45] gnu: Add node-addon-api., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 22/45] gnu: Add node-inherits., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 30/45] gnu: Add node-file-uri-to-path.,
Philip McGrath <=
- [bug#51838] [PATCH v4 31/45] gnu: Add node-bindings., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 37/45] gnu: Add node-serialport-parser-readling., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 25/45] gnu: Add node-readable-stream., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 27/45] gnu: Add node-openzwave-shared., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 23/45] gnu: Add node-safe-buffer., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 26/45] gnu: Add node-nan., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 32/45] gnu: Add node-segfault-handler., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 29/45] gnu: Add node-sqlite3., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 35/45] gnu: Add node-serialport-binding-abstract., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 24/45] gnu: Add node-string-decoder., Philip McGrath, 2021/12/13