diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2022-08-17 10:25:37 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2022-08-22 08:42:53 +0800 |
commit | 9914671af5ca49b234e349e4ae238e550c738f12 (patch) | |
tree | 695095b07141169b4c87775ff8591e4acfe93431 | |
parent | 2472cec23b4432d719c5ada29da2a9984bc6c095 (diff) | |
download | guix-9914671af5ca49b234e349e4ae238e550c738f12.tar.gz |
gnu: liblxqt: Update to 1.1.0.
* gnu/packages/lxqt.scm (liblxqt): Update to 1.1.0. [arguments]: Remove patch-translations-dir phase.
-rw-r--r-- | gnu/packages/lxqt.scm | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index 387caa06c0..de6ce0e010 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -236,7 +236,7 @@ applications.") (define-public liblxqt (package (name "liblxqt") - (version "0.17.0") + (version "1.1.0") (source (origin (method url-fetch) @@ -244,7 +244,7 @@ applications.") "https://github.com/lxqt/" name "/releases/download/" version "/" name "-" version ".tar.xz")) (sha256 - (base32 "0ay3j6zdgffw3mzaq3wdq96la7fnn2dw52ij6987slv31563nknl")))) + (base32 "1fickg1q54pcb8bv3x0ydg4xx02cqykibnjcq09as2kws6xbhk9n")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; no tests @@ -255,13 +255,6 @@ applications.") (substitute* "CMakeLists.txt" (("DESTINATION \"\\$\\{POLKITQT-1_POLICY_FILES_INSTALL_DIR\\}") "DESTINATION \"share/polkit-1/actions")) - #t)) - (add-after 'unpack 'patch-translations-dir - (lambda* (#:key outputs #:allow-other-keys) - (substitute* "CMakeLists.txt" - (("\\$\\{LXQT_TRANSLATIONS_DIR\\}") - (string-append (assoc-ref outputs "out") - "/share/lxqt/translations"))) #t))))) (inputs (list kwindowsystem |