me
/
guix
Archived
1
0
Fork 0

gnu: Add ktexttemplate.

* gnu/packages/kde-frameworks.scm (ktexttemplate): New variable.

Change-Id: Ib61f72103ec892711797ed570261ddfdc59738d5
master
Zheng Junjie 2024-07-06 16:50:14 +08:00
parent f799d40163
commit 7a35733025
No known key found for this signature in database
GPG Key ID: 3B5AA993E1A2DFF0
1 changed files with 24 additions and 0 deletions

View File

@ -3247,6 +3247,30 @@ It supports rich text as well as plain text.")
;; dual licensed
(license (list license:lgpl2.0+ license:lgpl2.1+))))
(define-public ktexttemplate
(package
(name "ktexttemplate")
(version "6.3.0")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://kde/stable/frameworks/"
(version-major+minor version) "/ktexttemplate-"
version ".tar.xz"))
(sha256
(base32
"17df96rmmyni2adv97p77y349vyvirs0svzs6dzzmclzb2f8hlck"))))
(build-system qt-build-system)
(native-inputs
(list extra-cmake-modules))
(inputs (list qtdeclarative))
(arguments (list #:qtbase qtbase))
(home-page "https://community.kde.org/Frameworks")
(synopsis "KDE's Text Template")
(description "KTextTemplate is to make it easier for application developers
to separate the structure of documents from the data they contain.")
(license (list license:lgpl2.1+))))
(define-public kwallet
(package
(name "kwallet")