gnu: kservice: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (kservice): Update to 5.27.0. [native-inputs]: Add bison and flex-2.6.1.
This commit is contained in:
parent
dc219cc6da
commit
886d8155c1
|
@ -2439,22 +2439,28 @@ typed.")
|
||||||
(define-public kservice
|
(define-public kservice
|
||||||
(package
|
(package
|
||||||
(name "kservice")
|
(name "kservice")
|
||||||
(version "5.24.0")
|
(version "5.27.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (string-append
|
||||||
(uri (string-append "mirror://kde/stable/frameworks/"
|
"mirror://kde/stable/frameworks/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0w0nsg64d6xhgijr2vh0j5p544qi0q55jpqa9v9mv956zrrdssdk"))))
|
"129bjdr272qkz2inmagy8jnxasifrl4d82x8rp9akfar29qsj6x6"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("kconfig" ,kconfig)
|
`(("kconfig" ,kconfig)
|
||||||
("kcoreaddons" ,kcoreaddons)))
|
("kcoreaddons" ,kcoreaddons)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
`(("bison" ,bison)
|
||||||
|
("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
;; extra-cmake-modules forces C89 for all C files for compatibility with
|
||||||
|
;; Windows. Flex 2.6.0 generates a lexer containing a single line
|
||||||
|
;; comment. Single line comments are part of the C99 standard, so the
|
||||||
|
;; lexer won't compile if C89 is used.
|
||||||
|
("flex" ,flex-2.6.1)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("kcrash" ,kcrash)
|
`(("kcrash" ,kcrash)
|
||||||
("kdbusaddons" ,kdbusaddons)
|
("kdbusaddons" ,kdbusaddons)
|
||||||
|
|
Loading…
Reference in New Issue