mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: kde-cli-tools: Update to 6.1.2.
* gnu/packages/kde-plasma.scm (kde-cli-tools): Update to 6.1.2. [inputs]: Remove kactivities, qtx11extras, and qtsvg-5; add plasma-activities, qtsvg, and libxkbcommon. [arguments]: Set #:qtbase to qtbase. Remove symlink-kdesu phase. Change-Id: Ia1fc93b0f65f065da9fb7803d7699f5f85b1a916
This commit is contained in:
parent
c61daf9349
commit
a9439f188b
1 changed files with 8 additions and 13 deletions
|
@ -463,7 +463,7 @@ (define-public kdecoration
|
|||
(define-public kde-cli-tools
|
||||
(package
|
||||
(name "kde-cli-tools")
|
||||
(version "5.27.7")
|
||||
(version "6.1.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/plasma/"
|
||||
|
@ -471,10 +471,11 @@ (define-public kde-cli-tools
|
|||
(patches (search-patches "kde-cli-tools-delay-mime-db.patch"))
|
||||
(sha256
|
||||
(base32
|
||||
"1br1i8ba4n7d2yl618ph4glsaasn3rxy4kjp48f12l9l2pk29nxa"))))
|
||||
"06vms60wrddj9b8bagk5xhwjff4pi81vxs0zja8mk5fscv0750bi"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f ;TODO: Failing 1 test
|
||||
(list #:qtbase qtbase
|
||||
#:tests? #f ;TODO: Failing 1 test
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'set-writable-location
|
||||
|
@ -485,13 +486,7 @@ (define-public kde-cli-tools
|
|||
(string-append "\"" (getcwd) "/\"")))))
|
||||
(add-before 'check 'setup-env
|
||||
(lambda* _
|
||||
(setenv "HOME" (getcwd))))
|
||||
(add-after 'install 'symlink-kdesu
|
||||
(lambda _
|
||||
;; XXX: nixpkgs say kdesu need kdeinit5 in PATH, but i can't
|
||||
;; found in source, need check
|
||||
(symlink (string-append #$output "/libexec/kf5/kdesu")
|
||||
(string-append #$output "/bin/kdesu")))))))
|
||||
(setenv "HOME" (getcwd)))))))
|
||||
(native-inputs (list extra-cmake-modules pkg-config shared-mime-info))
|
||||
(inputs (list kconfig
|
||||
kdesu
|
||||
|
@ -502,11 +497,11 @@ (define-public kde-cli-tools
|
|||
kio
|
||||
kservice
|
||||
kwindowsystem
|
||||
kactivities
|
||||
plasma-activities
|
||||
kparts
|
||||
plasma-workspace
|
||||
qtx11extras
|
||||
qtsvg-5))
|
||||
qtsvg
|
||||
libxkbcommon))
|
||||
(synopsis "CLI tools for interacting with KDE")
|
||||
(description "This package provides command-line tools based on
|
||||
KDE Frameworks 5 to better interact with the system.")
|
||||
|
|
Loading…
Reference in a new issue