diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-08-19 09:19:09 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-08-19 09:19:09 +0800 |
commit | 8a0263f17b9c754f6de7ee0b869249e87bfb7e3f (patch) | |
tree | f525f7b03fbdd0622a6c1705ca42e08eaa4eb0ff | |
parent | 9523f6378ab87067ef65e30965e9b3c6392f3c9e (diff) | |
download | patches-8a0263f17b9c754f6de7ee0b869249e87bfb7e3f.tar patches-8a0263f17b9c754f6de7ee0b869249e87bfb7e3f.tar.gz |
gnu: tk: Build with Xft support.
* gnu/packages/tcl.scm (tk)[inputs]: Add LIBXFT.
[native-inputs]: New field.
-rw-r--r-- | gnu/packages/tcl.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm index 7c2c3e549b..afa715c4cb 100644 --- a/gnu/packages/tcl.scm +++ b/gnu/packages/tcl.scm @@ -154,8 +154,9 @@ X11 GUIs.") ;; The tests require a running X server, so we just skip them. #:tests? #f)) - (inputs `(("tcl" ,tcl))) - + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs `(("libxft" ,libxft) + ("tcl" ,tcl))) ;; tk.h refers to X11 headers, hence the propagation. (propagated-inputs `(("libx11" ,libx11) ("libxext" ,libxext))) |