diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-01-08 03:42:03 -0500 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-01-09 02:07:13 +0100 |
commit | 37110c16505d330c276bf6dedd1ab00adee5369e (patch) | |
tree | c5b64be7ef8bf2f7efafaa58ed3116a62426ec5d /gnu | |
parent | 8c83a9c7ea321654e6a9d48b7087243e898569ba (diff) | |
download | guix-37110c16505d330c276bf6dedd1ab00adee5369e.tar.gz |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/node-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index e1ffdf978c..607877d677 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -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") |