lilyp pushed a commit to branch master
in repository guix.

commit ef511a3b489c0527105948da503dc8e94a5c48eb
Author: Philip McGrath <[email protected]>
AuthorDate: Sat Jan 8 03:41:54 2022 -0500

    gnu: node-semver-bootstrap: Use 'delete-dependencies'.
    
    gnu/packages/node.scm (node-semver-bootstrap)[arguments]: Use
    'delete-dependencies'.  Stop deleting the 'configure' phase.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/node.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 51a393caab..fb21054fe7 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -10,7 +10,7 @@
 ;;; Copyright © 2020 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2021 Simon Tournier <[email protected]>
 ;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]>
-;;; Copyright © 2021 Philip McGrath <[email protected]>
+;;; Copyright © 2021, 2022 Philip McGrath <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -346,7 +346,9 @@ devices.")
        #:tests? #f
        #:phases
        (modify-phases %standard-phases
-         (delete 'configure))))
+         (add-after 'patch-dependencies 'delete-dependencies
+           (lambda args
+             (delete-dependencies '("tap")))))))
     (home-page "https://github.com/npm/node-semver";)
     (properties '((hidden? . #t)))
     (synopsis "Parses semantic versions strings")

Reply via email to