summaryrefslogtreecommitdiff
path: root/gnu/packages/node.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2025-03-13 14:32:28 +0200
committerEfraim Flashner <efraim@flashner.co.il>2025-03-13 15:31:31 +0200
commit01808720f1ef53c57612535f40b90e146def35f0 (patch)
tree83730c5639f2d1b468c5085cfee0a00739fc4f8a /gnu/packages/node.scm
parent6dc89f2aa2b8660ba63d04d79e57c3fd5254fdee (diff)
gnu: node-bootstrap: Remove powerpc-linux from supported-systems.
* gnu/packages/node.scm (node-bootstrap)[supported-systems]: Remove powerpc-linux from the supported systems. (node-lts)[supported-systems]: Adjust accordingly. Change-Id: I66408d52cfe950d1ca4fb6f3303c82a759b050ec
Diffstat (limited to 'gnu/packages/node.scm')
-rw-r--r--gnu/packages/node.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 3d0a86b4fbe..b2f30d48293 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -342,7 +342,8 @@ for easily building fast, scalable network applications. Node.js uses an
event-driven, non-blocking I/O model that makes it lightweight and efficient,
perfect for data-intensive real-time applications that run across distributed
devices.")
- (supported-systems (delete "riscv64-linux" %supported-systems))
+ (supported-systems (fold delete %supported-systems
+ '("powerpc-linux" "riscv64-linux")))
(home-page "https://nodejs.org/")
(license license:expat)
(properties '((max-silent-time . 7200) ;2h, needed on ARM
@@ -991,7 +992,8 @@ fi"
`(,nghttp2 "lib")
openssl
zlib))
- (supported-systems %supported-systems)
+ (supported-systems
+ (cons "riscv64-linux" (package-supported-systems node-bootstrap)))
(properties (alist-delete 'hidden? (package-properties node-bootstrap)))))
(define-public node node-lts)