mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add kcalc.
* gnu/packages/kde-utils.scm (kcalc): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
e10e5f691d
commit
5c34774871
1 changed files with 30 additions and 0 deletions
|
@ -39,6 +39,7 @@ (define-module (gnu packages kde-utils)
|
|||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages gstreamer)
|
||||
#:use-module (gnu packages imagemagick)
|
||||
#:use-module (gnu packages multiprecision)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages kde)
|
||||
#:use-module (gnu packages kde-frameworks)
|
||||
|
@ -460,6 +461,35 @@ (define-public kbackup
|
|||
@end itemize")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public kcalc
|
||||
(package
|
||||
(name "kcalc")
|
||||
(version "22.08.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/"
|
||||
version "/src/kcalc-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"01rn6qy40q4b90i5mysrygkqh5fzq885dgcd11l6r8s59ijjcjlk"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs (list extra-cmake-modules kdoctools))
|
||||
(inputs (list gmp
|
||||
kcoreaddons
|
||||
kcrash
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
kguiaddons
|
||||
ki18n
|
||||
knotifications
|
||||
kxmlgui
|
||||
mpfr))
|
||||
(home-page "https://apps.kde.org/kcalc/")
|
||||
(synopsis "Scientific calculator")
|
||||
(description
|
||||
"This package provides a scientific calculator.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public kdialog
|
||||
(package
|
||||
(name "kdialog")
|
||||
|
|
Loading…
Reference in a new issue