mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: kde-frameworks: Update to 5.19.0.
* gnu/packages/kde-frameworks.scm (kwindowsystem): Update to 5.19.0. (extra-cmake-modules): Update to 5.19.0.
This commit is contained in:
parent
6d415db23d
commit
c73210d7a9
1 changed files with 13 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -26,7 +27,7 @@ (define-module (gnu packages kde-frameworks)
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt)
|
||||||
#:use-module (gnu packages xorg))
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
(define kde-frameworks-version "5.12.0")
|
(define kde-frameworks-version "5.19.0")
|
||||||
|
|
||||||
(define-public extra-cmake-modules
|
(define-public extra-cmake-modules
|
||||||
(package
|
(package
|
||||||
|
@ -39,7 +40,8 @@ (define-public extra-cmake-modules
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "14n77sn493m8kzr42wv13mdgxpnbx7x64bvw37ircrx8wmf4002i"))))
|
(base32
|
||||||
|
"1dl3hhbara7iswb5wsc5dp17ar3ljw5f0nrncl8vry9smaz2zl63"))))
|
||||||
;; The package looks for Qt5LinguistTools provided by Qt, but apparently
|
;; The package looks for Qt5LinguistTools provided by Qt, but apparently
|
||||||
;; compiles without it; it might be needed for building the
|
;; compiles without it; it might be needed for building the
|
||||||
;; documentation, which requires the additional Sphinx package.
|
;; documentation, which requires the additional Sphinx package.
|
||||||
|
@ -63,18 +65,19 @@ (define-public kwindowsystem
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0fjxhf07r186cmp0mjvinrwxg4z90zlyvycqhy0n18fdp67szckl"))))
|
(base32
|
||||||
|
"115xs34r74j9zcsw69glnh8w59iyh764n3gniawwrk23c6yb8fch"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("xorg-server" ,xorg-server))) ; for the tests
|
("xorg-server" ,xorg-server))) ; for the tests
|
||||||
(inputs
|
(inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
("libxrender" ,libxrender)
|
("libxrender" ,libxrender)
|
||||||
("qt" ,qt)
|
("qt" ,qt)
|
||||||
("xcb-utils-keysyms" ,xcb-util-keysyms)))
|
("xcb-utils-keysyms" ,xcb-util-keysyms)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; FIXME: The first seven tests fail with "Exception".
|
`(#:tests? #f)) ; FIXME: The first seven tests fail with "Exception".
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "KDE access to the windowing system")
|
(synopsis "KDE access to the windowing system")
|
||||||
(description "KWindowSystem provides information about and allows
|
(description "KWindowSystem provides information about and allows
|
||||||
|
|
Loading…
Reference in a new issue