apteryx pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit e08926c02391d332d3c9fe9b9cd09fcbccd57fa1 Author: Maxim Cournoyer <[email protected]> AuthorDate: Fri Oct 15 23:59:16 2021 -0400 gnu: libthai: Make datrie a normal native-input. * gnu/packages/gtk.scm (libthai)[native-input]: Remove conditional on the datrie input. --- gnu/packages/gtk.scm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 35c66e9..8f57f66 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -344,12 +344,9 @@ representing trie. Trie is a kind of digital search tree.") (assoc-ref %outputs "doc") "/share/doc/libthai/html")))) (native-inputs - `(("doxygen" ,doxygen) - ("pkg-config" ,pkg-config) - ;; TODO(core-updates): Make this input unconditional. - ,@(if (%current-target-system) - `(("datrie" ,libdatrie)) ; for 'trietool' - '()))) + `(("datrie" ,libdatrie) + ("doxygen" ,doxygen) + ("pkg-config" ,pkg-config))) (propagated-inputs `(("datrie" ,libdatrie))) (synopsis "Thai language support library")
