From 2a30cba6cf4885e07f8c9d574719c0e6f7138fb2 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Fri, 2 Jan 2026 23:50:49 +0100 Subject: 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(+) (limited to 'gnu') diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index dca7768e8e3..ad6110c3748 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") -- cgit v1.2.3