summary refs log tree commit diff
path: root/pkgs/tools/graphics/kst/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/graphics/kst/default.nix')
-rw-r--r--pkgs/tools/graphics/kst/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/kst/default.nix b/pkgs/tools/graphics/kst/default.nix
new file mode 100644
index 00000000000..14720664427
--- /dev/null
+++ b/pkgs/tools/graphics/kst/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, cmake, pkgconfig
+, qt5, gsl, getdata, netcdf, muparser, matio
+}:
+stdenv.mkDerivation rec {
+  name = "Kst-2.0.8";
+  src = fetchurl {
+    url = "mirror://sourceforge/kst/${name}.tar.gz";
+    sha256 = "1ihqmwqw0h2p7hn5shd8iwb0gd4axybs60lgw22ijxqh6wzgvyyf";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+  buildInputs = [ qt5 gsl getdata netcdf muparser matio ];
+
+  cmakeFlags = "-Dkst_qt5=1 -Dkst_release=1";
+
+  postInstall = ''
+    mkdir -p $out
+    for d in bin lib share
+    do
+      cp -r INSTALLED/$d $out/
+    done
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Real-time large-dataset viewing and plotting tool";
+    homepage = https://kst-plot.kde.org/;
+    license = licenses.gpl2;
+    platforms = platforms.all;
+    maintainers = [ maintainers.vbgl ];
+  };
+}