me
/
guix
Archived
1
0
Fork 0

gnu: krusader: Update to 2.8.0.

* gnu/packages/kde-utils.scm (krusader): Update to 2.8.0.
[arguments]: Add a phase to patch 'compat.h'.
master
宋文武 2023-07-30 07:29:38 +08:00
parent 1270f29b9c
commit cc994a8780
No known key found for this signature in database
GPG Key ID: D415BF253B515976
1 changed files with 11 additions and 2 deletions

View File

@ -923,15 +923,24 @@ to save the times and resume them later.")
(define-public krusader (define-public krusader
(package (package
(name "krusader") (name "krusader")
(version "2.7.2") (version "2.8.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://kde/stable/krusader/" version (uri (string-append "mirror://kde/stable/krusader/" version
"/krusader-" version ".tar.xz")) "/krusader-" version ".tar.xz"))
(sha256 (sha256
(base32 "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1")))) (base32 "16n2y861ka8jhackf7hd9b0b0argifc1p0a114dvrc0qjddg0k4f"))))
(build-system qt-build-system) (build-system qt-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-compat.h
(lambda _
;; Those fallbacks for pre KF-5.91 cause missing includes.
(substitute* "app/compat.h"
(("# include <kcompletion_version\\.h>") "")
(("# include <karchive_version\\.h>") "")))))))
(native-inputs (native-inputs
(list extra-cmake-modules kdoctools)) (list extra-cmake-modules kdoctools))
(inputs (inputs