guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 24/31] gnu: kde-frameworks: Add kplotting.


From: David Craven
Subject: [PATCH 24/31] gnu: kde-frameworks: Add kplotting.
Date: Mon, 1 Aug 2016 20:13:35 +0200

From: Hartmut Goebel <address@hidden>

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

Co-authored-by: David Craven <address@hidden>
---
 gnu/packages/kde-frameworks.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 1ec098c..ef1ebe2 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -583,6 +583,35 @@ item models.  It includes views for categorizing lists and 
to add search filters
 to flat and hierarchical lists.")
     (license license:lgpl3+)))
 
+(define-public kplotting
+  (package
+    (name "kplotting")
+    (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
+          "0gpypq9kh4b5s6dc7py3m117k3nbxczsfkxgxd9zxvr35kig7ya2"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    (arguments
+     `(#:tests? #f)) ; FIXME: 4/4 tests fail.
+    (home-page "https://community.kde.org/Frameworks";)
+    (synopsis "Data plotting library")
+    (description "KPlotWidget is a QWidget-derived class that provides a 
virtual
+base class for easy data-plotting.  The idea behind KPlotWidget is that you 
only
+have to specify information in \"data units\", the natural units of the
+data being plotted.  KPlotWidget automatically converts everything to screen
+pixel units.")
+    (license license:lgpl3+)))
+
 (define-public kwindowsystem
 ;;; TODO qtx11extras isn't found
   (package
-- 
2.9.0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]