diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-03-13 14:32:28 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-03-13 14:35:00 +0200 |
| commit | 86dd2135b58c1a52f3bba31e96d50dfd8b9361e5 (patch) | |
| tree | 2d7bbe4643b1d00a4d4de9b6500210486ea05129 | |
| parent | a4a914f4c29298cb22fd2225ae4c16de32fc6fc1 (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
| -rw-r--r-- | gnu/packages/node.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index c6ddcf1b3f3..98441f29d9d 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 | |||
| 342 | event-driven, non-blocking I/O model that makes it lightweight and efficient, | 342 | event-driven, non-blocking I/O model that makes it lightweight and efficient, |
| 343 | perfect for data-intensive real-time applications that run across distributed | 343 | perfect for data-intensive real-time applications that run across distributed |
| 344 | devices.") | 344 | devices.") |
| 345 | (supported-systems (delete "riscv64-linux" %supported-systems)) | 345 | (supported-systems (fold delete %supported-systems |
| 346 | '("powerpc-linux" "riscv64-linux"))) | ||
| 346 | (home-page "https://nodejs.org/") | 347 | (home-page "https://nodejs.org/") |
| 347 | (license license:expat) | 348 | (license license:expat) |
| 348 | (properties '((max-silent-time . 7200) ;2h, needed on ARM | 349 | (properties '((max-silent-time . 7200) ;2h, needed on ARM |
| @@ -1380,7 +1381,8 @@ fi" | |||
| 1380 | `(,nghttp2 "lib") | 1381 | `(,nghttp2 "lib") |
| 1381 | openssl | 1382 | openssl |
| 1382 | zlib)) | 1383 | zlib)) |
| 1383 | (supported-systems %supported-systems) | 1384 | (supported-systems |
| 1385 | (cons "riscv64-linux" (package-supported-systems node-bootstrap))) | ||
| 1384 | (properties (alist-delete 'hidden? (package-properties node-bootstrap))))) | 1386 | (properties (alist-delete 'hidden? (package-properties node-bootstrap))))) |
| 1385 | 1387 | ||
| 1386 | (define-public node node-lts) | 1388 | (define-public node node-lts) |
