gnu: fcitx: Update to 4.2.9.6.
* gnu/packages/fcitx.scm (fcitx): Update to 4.2.9.6. [native-inputs]: Add extra-cmake-modules.
This commit is contained in:
parent
657bed34f4
commit
50ca5fb332
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -35,14 +36,14 @@
|
||||||
(define-public fcitx
|
(define-public fcitx
|
||||||
(package
|
(package
|
||||||
(name "fcitx")
|
(name "fcitx")
|
||||||
(version "4.2.8.6")
|
(version "4.2.9.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://download.fcitx-im.org/fcitx/"
|
(uri (string-append "http://download.fcitx-im.org/fcitx/"
|
||||||
name "-" version "_dict.tar.xz"))
|
name "-" version "_dict.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15ymd42kg920ri0f8fymq3i68g8k1kgpmdlnk9jf5fvnz6g4w0wi"))))
|
"0hyrh3v82a32ylnlvzrp6cmq56x4p1a42q5xc6njmmj2msxm34x5"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(outputs '("out" "gtk2" "gtk3"))
|
(outputs '("out" "gtk2" "gtk3"))
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -65,7 +66,12 @@
|
||||||
"-DENABLE_QT_IM_MODULE=OFF")))
|
"-DENABLE_QT_IM_MODULE=OFF")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
("glib:bin" ,glib "bin") ; for glib-genmarshal
|
("extra-cmake-modules"
|
||||||
|
;; XXX: We can't simply #:use-module due to a cycle somewhere.
|
||||||
|
,(module-ref
|
||||||
|
(resolve-interface '(gnu packages kde-frameworks))
|
||||||
|
'extra-cmake-modules))
|
||||||
|
("glib:bin" ,glib "bin") ; for glib-genmarshal
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("dbus" ,dbus)
|
`(("dbus" ,dbus)
|
||||||
|
|
Loading…
Reference in New Issue