mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add purpose-5.
* gnu/packages/kde-frameworks.scm (purpose-5): New variable. Change-Id: I2bc23279ddc46ed1285c6a898f6149364b245dc5
This commit is contained in:
parent
93216982ab
commit
8e07bda534
1 changed files with 31 additions and 0 deletions
|
@ -5184,6 +5184,37 @@ (define-public purpose
|
|||
need.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public purpose-5
|
||||
(package
|
||||
(inherit purpose)
|
||||
(name "purpose")
|
||||
(version "5.116.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://kde/stable/frameworks/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1g0xip1khclinx3vb835krdsj66jllgbx1fka8d9f55n68d6rmk2"))))
|
||||
(native-inputs
|
||||
(list extra-cmake-modules))
|
||||
(inputs
|
||||
(list
|
||||
kconfig-5
|
||||
kcoreaddons-5
|
||||
knotifications-5
|
||||
ki18n-5
|
||||
kio-5
|
||||
kirigami-5
|
||||
qtbase-5
|
||||
qtdeclarative-5))
|
||||
(arguments
|
||||
(list #:tests? #f ;; seem to require network; don't find QTQuick components
|
||||
;; not run anyway
|
||||
#:configure-flags #~'("-DBUILD_TESTING=OFF")))))
|
||||
|
||||
(define-public ktextaddons
|
||||
(package
|
||||
(name "ktextaddons")
|
||||
|
|
Loading…
Reference in a new issue