guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2a30cba6cf4885e07f8c9d574719c0e6f7138fb2
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:50:49 2026 +0100
gnu: Add node-proxy-from-env.
* gnu/packages/node-xyz.scm (node-proxy-from-env): New variable.
Change-Id: I8f40ba540541158a6dcd2b2d7440c31b26eceb30
---
gnu/packages/node-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index dca7768e8e..ad6110c374 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -2835,6 +2835,33 @@ command-line applications.")
lockfile utility that works on a local or network file system.")
(license license:expat)))
+(define-public node-proxy-from-env
+ (package
+ (name "node-proxy-from-env")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Rob--W/proxy-from-env")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0m7rr70lb7011310rj85nyg3vwlkr1w8302nr4s0xmcxi4yv6sln"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'patch-dependencies 'delete-dev-dependencies
+ (lambda _
+ (modify-json (delete-dev-dependencies)))))))
+ (home-page "https://github.com/Rob--W/proxy-from-env")
+ (synopsis "Proxy URL from environment variables")
+ (description "This package provides a way to read proxy URLs from
+environment variables.")
+ (license license:expat)))
+
(define-public node-readable-stream
(package
(name "node-readable-stream")