summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2026-01-02 23:50:49 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2026-02-08 21:23:35 +0100
commit2a30cba6cf4885e07f8c9d574719c0e6f7138fb2 (patch)
tree16673568cf4ee1912d702a16fd3fb156d37c2a31 /gnu
parent590391575cd94f607093e73327ef99dd29df9036 (diff)
gnu: Add node-proxy-from-env.
* gnu/packages/node-xyz.scm (node-proxy-from-env): New variable. Change-Id: I8f40ba540541158a6dcd2b2d7440c31b26eceb30
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/node-xyz.scm27
1 files changed, 27 insertions, 0 deletions
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.")
2835lockfile utility that works on a local or network file system.") 2835lockfile utility that works on a local or network file system.")
2836 (license license:expat))) 2836 (license license:expat)))
2837 2837
2838(define-public node-proxy-from-env
2839 (package
2840 (name "node-proxy-from-env")
2841 (version "1.1.0")
2842 (source
2843 (origin
2844 (method git-fetch)
2845 (uri (git-reference
2846 (url "https://github.com/Rob--W/proxy-from-env")
2847 (commit (string-append "v" version))))
2848 (file-name (git-file-name name version))
2849 (sha256
2850 (base32 "0m7rr70lb7011310rj85nyg3vwlkr1w8302nr4s0xmcxi4yv6sln"))))
2851 (build-system node-build-system)
2852 (arguments
2853 '(#:tests? #f
2854 #:phases
2855 (modify-phases %standard-phases
2856 (add-after 'patch-dependencies 'delete-dev-dependencies
2857 (lambda _
2858 (modify-json (delete-dev-dependencies)))))))
2859 (home-page "https://github.com/Rob--W/proxy-from-env")
2860 (synopsis "Proxy URL from environment variables")
2861 (description "This package provides a way to read proxy URLs from
2862environment variables.")
2863 (license license:expat)))
2864
2838(define-public node-readable-stream 2865(define-public node-readable-stream
2839 (package 2866 (package
2840 (name "node-readable-stream") 2867 (name "node-readable-stream")