mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add kunitconversion.
* gnu/packages/kde-frameworks.scm (kunitconversion): New variable. Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>
This commit is contained in:
parent
fee9b2662e
commit
812bab6ded
1 changed files with 27 additions and 0 deletions
|
@ -1406,3 +1406,30 @@ (define-public kpty
|
|||
terminal devices as well as a KProcess derived class for running child processes
|
||||
and communicating with them using a pty.")
|
||||
(license (list license:gpl2+ license:lgpl2.1+))))
|
||||
|
||||
(define-public kunitconversion
|
||||
(package
|
||||
(name "kunitconversion")
|
||||
(version "5.24.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/frameworks/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"03dfjn4lm6sl2zcdrvw0b9irzvkyc2w2j5xixag5j8nw373742h8"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
||||
(inputs
|
||||
`(("ki18n" ,ki18n)
|
||||
("qtbase" ,qtbase)))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Converting physical units")
|
||||
(description "KUnitConversion provides functions to convert values in
|
||||
different physical units. It supports converting different prefixes (e.g. kilo,
|
||||
mega, giga) as well as converting between different unit systems (e.g. liters,
|
||||
gallons).")
|
||||
(license license:lgpl2.1+)))
|
||||
|
|
Loading…
Reference in a new issue