mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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
This commit is contained in:
parent
a4a914f4c2
commit
86dd2135b5
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
@ -1380,7 +1381,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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue