me
/
guix
Archived
1
0
Fork 0

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

gnu/packages/node-xyz.scm (node-irc)[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:05 -05:00 committed by Liliana Marie Prikler
parent b542d09ed3
commit 534f9e495f
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 6 additions and 5 deletions

View File

@ -404,12 +404,13 @@ such as rainbows.")
"1ln4qfx20jbwg4cp8lp0vf27m5281z2sz16d15xd6150n26cbi4x")))) "1ln4qfx20jbwg4cp8lp0vf27m5281z2sz16d15xd6150n26cbi4x"))))
(build-system node-build-system) (build-system node-build-system)
(arguments (arguments
'(#:tests? #f ; FIXME: tests depend on node-faucet '(#:phases
#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
;; The default configure phase fails due to various packages (add-after 'patch-dependencies 'delete-dependencies
;; being missing, as we don't have them packaged yet. (lambda args
(delete 'configure)))) (delete-dependencies
`("ansi-color" "faucet" "jscs" "tape")))))
#:tests? #f))
(inputs (inputs
(list node-irc-colors)) (list node-irc-colors))
(home-page "https://github.com/martynsmith/node-irc") (home-page "https://github.com/martynsmith/node-irc")