me
/
guix
Archived
1
0
Fork 0

gnu: libnode: Use node-lts as base.

* gnu/packages/node.scm (libnode): Use node-lts as base.
* gnu/packages/cran.scm (r-v8)[arguments]<#:phases>: Adjusted accordingly.

Signed-off-by: Jelle Licht <jlicht@fsfe.org>
master
Hilton Chain 2023-02-08 22:05:31 +01:00 committed by Jelle Licht
parent 8cc0ed4536
commit 40d6615ca2
No known key found for this signature in database
GPG Key ID: DA4597F947B41025
2 changed files with 3 additions and 3 deletions

View File

@ -1438,7 +1438,7 @@ similar rank-based tests for equal probability distributions due to Neuhauser
(("^PKG_LIBS=.*")
(string-append "PKG_LIBS="
(assoc-ref inputs "libnode")
"/lib/libnode.so.64\n")))
"/lib/libnode.so.108\n")))
(setenv "INCLUDE_DIR"
(string-append
(assoc-ref inputs "libnode")

View File

@ -905,10 +905,10 @@ source files.")
zlib))))
(define-public libnode
(package/inherit node
(package/inherit node-lts
(name "libnode")
(arguments
(substitute-keyword-arguments (package-arguments node)
(substitute-keyword-arguments (package-arguments node-lts)
((#:configure-flags flags ''())
`(cons* "--shared" "--without-npm" ,flags))
((#:phases phases '%standard-phases)