gnu: libkdcraw: Update to 24.05.2.
* gnu/packages/kde-frameworks.scm (libkdcraw): Update to 24.05.2. [inputs]: Remove qtbase-5; add qtbase. [arguments]<#:configure-flags>: Set QT_MAJOR_VERSION. Change-Id: I420cf3dabd5f6e748e604aac8433d90d0676b5dc
This commit is contained in:
parent
8c8d827d24
commit
1fd0cc75b0
1 changed files with 9 additions and 3 deletions
|
@ -1585,19 +1585,25 @@ uses a job-based interface to queue tasks and execute them in an efficient way."
|
||||||
(define-public libkdcraw
|
(define-public libkdcraw
|
||||||
(package
|
(package
|
||||||
(name "libkdcraw")
|
(name "libkdcraw")
|
||||||
(version "23.08.4")
|
(version "24.05.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||||
"/src/" name "-" version ".tar.xz"))
|
"/src/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1mm3gsp7lfqxb9irk59hrzaxdqjv28iwaa1xmpazw4q62nmlj7mi"))))
|
(base32 "0a4aifi3jwkizdn2qsa441f28j9ykymw4bn922d5pz6c9riw3ssr"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config extra-cmake-modules))
|
(list pkg-config extra-cmake-modules))
|
||||||
(inputs
|
(inputs
|
||||||
(list libraw qtbase-5))
|
(list libraw qtbase))
|
||||||
|
(arguments (list #:configure-flags
|
||||||
|
#~(list #$(string-append
|
||||||
|
"-DQT_MAJOR_VERSION="
|
||||||
|
(version-major
|
||||||
|
(package-version
|
||||||
|
(this-package-input "qtbase")))))))
|
||||||
(home-page "https://invent.kde.org/graphics/libkdcraw")
|
(home-page "https://invent.kde.org/graphics/libkdcraw")
|
||||||
(synopsis "C++ interface used to decode RAW picture files")
|
(synopsis "C++ interface used to decode RAW picture files")
|
||||||
(description "Libkdcraw is a C++ interface around LibRaw library used to
|
(description "Libkdcraw is a C++ interface around LibRaw library used to
|
||||||
|
|
Reference in a new issue