Adds Kst-2.0.8

Kst is a real-time large-dataset viewing and plotting tool that has
built-in data analysis functionality.

Homepage: https://kst-plot.kde.org/
This commit is contained in:
Vincent Laporte 2014-11-20 16:55:25 +00:00
parent 94f20a542a
commit d1d22919aa
2 changed files with 33 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -1545,6 +1545,8 @@ let
kismet = callPackage ../applications/networking/sniffers/kismet { };
kst = callPackage ../tools/graphics/kst { };
less = callPackage ../tools/misc/less { };
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix { };