diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-10-10 14:16:46 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-10-10 14:16:46 +0200 |
commit | b1de968fd5fd916e30258c6e256f65a294fca780 (patch) | |
tree | c5f1a2e4367155e567c203d2425c7672315daf0c /gnu/packages | |
parent | e428e9898e7acd5e1c806546ab17d484515bc2c6 (diff) |
gnu: llhttp: Fix build.
* gnu/packages/node.scm (llhttp-bootstrap)[arguments]: Add missing keyword
argument to 'configure' phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/node.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index d5a5be27de..fd6dd4cd24 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2020, 2021 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com> +;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -602,7 +603,7 @@ parser definition into a C output.") #:phases (modify-phases %standard-phases (replace 'configure - (lambda* (#:key inputs #:allow-other-keys) + (lambda* (#:key inputs native-inputs #:allow-other-keys) (let ((esbuild (search-input-file (or native-inputs inputs) "/bin/esbuild"))) (invoke esbuild |