gnu: Add c-ares-for-node.
* gnu/packages/adns.scm (c-ares-for-node): New variable. Co-authored-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
a69076e792
commit
ecbf59abad
1 changed files with 22 additions and 0 deletions
|
|
@ -118,3 +118,25 @@ multiple clients and programs with graphical user interfaces.")
|
||||||
(arguments
|
(arguments
|
||||||
`(;; XXX: Tests require name resolution (the normal variant runs no tests).
|
`(;; XXX: Tests require name resolution (the normal variant runs no tests).
|
||||||
#:tests? #f)))))
|
#:tests? #f)))))
|
||||||
|
|
||||||
|
(define-public c-ares-for-node
|
||||||
|
(hidden-package
|
||||||
|
(package
|
||||||
|
(inherit c-ares)
|
||||||
|
(name "c-ares")
|
||||||
|
(version "1.18.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://c-ares.haxx.se/download/" name "-" version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1kxviskwsaa7dcgscvssxa8ps88pdq7kq4z93gxvz7sam2l54z8s"))))
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'filter-live-tests
|
||||||
|
(lambda _
|
||||||
|
;; Filter tests that require internet access.
|
||||||
|
(setenv "GTEST_FILTER" "-*.Live*:*.FamilyV4*")))))))))
|
||||||
|
|
|
||||||
Reference in a new issue