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:
Jelle Licht 2021-11-15 15:21:21 +01:00
parent a69076e792
commit ecbf59abad
No known key found for this signature in database
GPG Key ID: DA4597F947B41025
1 changed files with 22 additions and 0 deletions

View File

@ -118,3 +118,25 @@ multiple clients and programs with graphical user interfaces.")
(arguments
`(;; XXX: Tests require name resolution (the normal variant runs no tests).
#: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*")))))))))