mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: pidgin: Enable support for Tk.
* gnu/packages/messaging.scm (pidgin) [inputs]: Add tk. [arguments]<#:configure-flags>[--with-tkconfig]: New flag. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
823567803f
commit
f0e429a218
1 changed files with 5 additions and 2 deletions
|
@ -786,7 +786,8 @@ (define-public pidgin
|
|||
("silc" ,silc-toolkit)
|
||||
("sqlite" ,sqlite)
|
||||
("startup-notification" ,startup-notification)
|
||||
("tcl" ,tcl)))
|
||||
("tcl" ,tcl)
|
||||
("tk" ,tk)))
|
||||
(propagated-inputs
|
||||
`(("glib" ,glib)))
|
||||
(arguments
|
||||
|
@ -795,7 +796,6 @@ (define-public pidgin
|
|||
"--disable-gtkspell"
|
||||
;; "--enable-gevolution"
|
||||
"--enable-cap"
|
||||
"--disable-tcl"
|
||||
"--enable-mono"
|
||||
"--disable-vv" ; XXX remove when we have farstream and gstreamer
|
||||
"--disable-gstreamer" ; XXX patches needed to support gstreamer-1.0
|
||||
|
@ -805,6 +805,9 @@ (define-public pidgin
|
|||
"/include")
|
||||
(string-append "--with-tclconfig="
|
||||
(assoc-ref %build-inputs "tcl")
|
||||
"/lib")
|
||||
(string-append "--with-tkconfig="
|
||||
(assoc-ref %build-inputs "tk")
|
||||
"/lib"))))
|
||||
(native-search-paths
|
||||
(list
|
||||
|
|
Loading…
Reference in a new issue