apteryx pushed a commit to branch core-updates-frozen
in repository guix.
commit 6d08d40cfa8797066a14f2a456377eddfe24d76e
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")