diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-15 23:59:16 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 12:18:17 -0500 |
commit | 6d08d40cfa8797066a14f2a456377eddfe24d76e (patch) | |
tree | 9b8f356868cfc5caf7e9a1f9aefaa304f174d794 | |
parent | b071402d35427c7400dff224f54d6c57d35104e2 (diff) |
gnu: libthai: Make datrie a normal native-input.
* gnu/packages/gtk.scm (libthai)[native-input]: Remove conditional on the
datrie input.
-rw-r--r-- | gnu/packages/gtk.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 35c66e9d32..8f57f660c4 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") |