me
/
guix
Archived
1
0
Fork 0

gnu: node-once: Use 'delete-dependencies'.

gnu/packages/node-xyz.scm (node-once)[arguments]: Use
'delete-dependencies'.  Stop deleting the 'configure' phase.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
master
Philip McGrath 2022-01-08 03:42:03 -05:00 committed by Liliana Marie Prikler
parent 8c83a9c7ea
commit 37110c1650
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 6 additions and 6 deletions

View File

@ -343,13 +343,13 @@ function with browser support.")
"1z8dcbf28dqdcp4wb0c53wrs90a07nkrax2c9kk26dsk1dhrnxav"))))
(build-system node-build-system)
(arguments
'(#:tests? #f ; FIXME: tests depend on node-tap
#:phases
'(#:phases
(modify-phases %standard-phases
;; The default configure phase fails due to tap being missing, as we do
;; not have tap packaged yet. It is used only for tests. This package
;; still works as a dependency of node-glob and node-inflight.
(delete 'configure))))
(add-after 'patch-dependencies 'delete-dependencies
(lambda args
(delete-dependencies '("tap")))))
;; FIXME: Tests depend on node-tap
#:tests? #f))
(inputs
(list node-wrappy))
(home-page "https://github.com/isaacs/once")