diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-08-26 11:55:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-08-26 12:04:51 +0200 |
commit | 193eb46b5b0420d6dc050919846e44708678b28e (patch) | |
tree | c4c52b92f5b7632977ba9bc4ad61d8e98d8e2f8a /gnu/packages/web.scm | |
parent | 7e662338116f1257e6234e3e70c38906ae24c268 (diff) |
gnu: guix-data-service: Build against the same Guile as 'guix'.
This is a followup to a2991de0f44a5f4db71ddad67e914fe3344a4505.
* gnu/packages/web.scm (guix-data-service)[native-inputs]: Change
"guile" to match that of GUIX.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 5404050cdc..24faf807c9 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -4537,7 +4537,7 @@ CDF, Atom 0.3, and Atom 1.0 feeds.") ("postgresql" ,postgresql-11) ("sqitch" ,sqitch))) (native-inputs - `(("guile" ,guile-3.0) + `(("guile" ,@(assoc-ref (package-native-inputs guix) "guile")) ("autoconf" ,autoconf) ("automake" ,automake) ("emacs-minimal" ,emacs-minimal) |