gnu: Add kpmcore.
* gnu/packages/kde-frameworks.scm (kpmcore): New variable.
This commit is contained in:
parent
0a7c2d0864
commit
72783891fe
1 changed files with 33 additions and 0 deletions
|
@ -33,6 +33,7 @@ (define-module (gnu packages kde-frameworks)
|
|||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages databases)
|
||||
#:use-module (gnu packages disk)
|
||||
#:use-module (gnu packages docbook)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages gettext)
|
||||
|
@ -142,6 +143,38 @@ (define-public gpgmepp
|
|||
(description "C++ bindings/wrapper for gpgme.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public kpmcore
|
||||
(package
|
||||
(name "kpmcore")
|
||||
(version "2.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/kpmcore"
|
||||
"/" version "/src/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1blila6ncqbmzhycx3szrbkxc000pzh62956mw5ihxvhrqpncg2p"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("kconfigwidgets" ,kconfigwidgets)
|
||||
("kiconthemes" ,kiconthemes)
|
||||
("kio" ,kio)
|
||||
("ki18n" ,ki18n)
|
||||
("kservice" ,kservice)
|
||||
("libatasmart" ,libatasmart)
|
||||
("parted" ,parted)
|
||||
("qtbase" ,qtbase)
|
||||
("util-linux" ,util-linux)))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Library for managing partitions")
|
||||
(description "Library for managing partitions.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
|
||||
;; Tier 1
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue