gnu: libnode: Delete unused phase.

This is a follow-up to commit bb310a1976.

* gnu/packages/node.scm (libnode)[arguments]: Delete phase
"patch-npm-shebang".
This commit is contained in:
Ricardo Wurmus 2020-06-13 20:03:42 +02:00
parent 2c74e87079
commit e8521f0b95
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 1 deletions

View File

@ -206,4 +206,7 @@ devices.")
(arguments
(substitute-keyword-arguments (package-arguments node)
((#:configure-flags flags ''())
`(cons* "--shared" "--without-npm" ,flags))))))
`(cons* "--shared" "--without-npm" ,flags))
((#:phases phases '%standard-phases)
`(modify-phases ,phases
(delete 'patch-npm-shebang)))))))