[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/25: gnu: Add labplot.
From: |
guix-commits |
Subject: |
19/25: gnu: Add labplot. |
Date: |
Sun, 31 Jan 2021 09:04:33 -0500 (EST) |
htgoebel pushed a commit to branch wip-kde-education
in repository guix.
commit 09dbcc14a062d08845ed99f857998b76573fb934
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 2 12:33:46 2019 +0100
gnu: Add labplot.
* gnu/packages/education.scm (labplot): New variable.
---
gnu/packages/education.scm | 72 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 3146fc4..957449e 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -32,8 +32,10 @@
#:use-module (gnu packages audio)
#:use-module (gnu packages algebra)
#:use-module (gnu packages astronomy)
+ #:use-module (gnu packages audio)
#:use-module (gnu packages base)
#:use-module (gnu packages bash)
+ #:use-module (gnu packages bison)
#:use-module (gnu packages boost)
#:use-module (gnu packages chemistry)
#:use-module (gnu packages compression)
@@ -1817,6 +1819,76 @@ This package is part of the KDE education module.")
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+(define-public labplot
+ (package
+ (name "labplot")
+ (version "2.8.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/labplot/" version
+ "/labplot-" version ".tar.xz"))
+ (sha256
+ (base32 "16h7kv3k08x2a265cx0dxvflgd6d7rk6cbyrqi1cf8ar6fl0jsbj"))))
+ (build-system qt-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; The tests require some locale.
+ (add-before 'check 'set-locales
+ (lambda* (#:key inputs #:allow-other-keys)
+ (setenv "GUIX_LOCPATH"
+ (string-append (assoc-ref inputs "glibc-locales")
+ "/lib/locale"))
+ #t)))))
+ (native-inputs
+ `(("bison" ,bison)
+ ("extra-cmake-modules" ,extra-cmake-modules)
+ ("glibc-locales" ,glibc-locales) ; for tests
+ ("kdoctools" ,kdoctools)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(; FIXME: ("cantor" ,cantor)
+ ("cfitsio" ,cfitsio)
+ ("fftw" ,fftw)
+ ("gettext" ,gettext-minimal)
+ ("gsl" ,gsl)
+ ("hdf5" ,hdf5)
+ ("karchive" ,karchive)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("knewstuff" ,knewstuff)
+ ("kparts" ,kparts)
+ ("kservice" ,kservice)
+ ("ksyntaxhighlighting" ,ksyntaxhighlighting)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kxmlgui" ,kxmlgui)
+ ;, TODO: libcerf
+ ("lz4" ,lz4)
+ ("netcdf" ,netcdf)
+ ("oxygen-icons" ,oxygen-icons) ;; default icon set
+ ("qtbase" ,qtbase)
+ ("qtserialport" ,qtserialport)
+ ("qtsvg" ,qtsvg)
+ ("shared-mime-info" ,shared-mime-info)
+ ("zlib" ,zlib)))
+ (home-page "https://kde.org/applications/education/org.kde.labplot")
+ (synopsis "Interactive graphing and analysis of scientific data")
+ (description "
+LabPlot provides an easy way to create, manage and edit plots.
+It allows you to produce plots based on data from a spreadsheet or on
+data imported from external files.
+
+Plots can be exported to several pixmap and vector graphic formats.")
+ (license license:gpl2+)))
+
(define-public libkeduvocdocument
(package
(name "libkeduvocdocument")
- 04/25: gnu: Add cantor., (continued)
- 04/25: gnu: Add cantor., guix-commits, 2021/01/31
- 05/25: gnu: Add kalgebra., guix-commits, 2021/01/31
- 07/25: gnu: Add libkeduvocdocument., guix-commits, 2021/01/31
- 06/25: gnu: Add kalzium., guix-commits, 2021/01/31
- 02/25: gnu: Add analitza., guix-commits, 2021/01/31
- 12/25: gnu: Add kig., guix-commits, 2021/01/31
- 14/25: gnu: Add klettres., guix-commits, 2021/01/31
- 09/25: gnu: Add kbruch., guix-commits, 2021/01/31
- 11/25: gnu: Add khangman., guix-commits, 2021/01/31
- 13/25: gnu: Add kiten., guix-commits, 2021/01/31
- 19/25: gnu: Add labplot.,
guix-commits <=
- 17/25: gnu: Add kturtle., guix-commits, 2021/01/31
- 18/25: gnu: Add kwordquiz., guix-commits, 2021/01/31
- 10/25: gnu: Add kgeography., guix-commits, 2021/01/31
- 08/25: gnu: Add kanagram., guix-commits, 2021/01/31
- 16/25: gnu: Add kstars., guix-commits, 2021/01/31
- 21/25: gnu: Add minuet., guix-commits, 2021/01/31
- 15/25: gnu: Add kmplot., guix-commits, 2021/01/31
- 20/25: gnu: Add marble., guix-commits, 2021/01/31
- 22/25: gnu: Add parley., guix-commits, 2021/01/31
- 23/25: gnu: Add rocs., guix-commits, 2021/01/31