kst: remove broken

This commit is contained in:
Vincent Laporte 2020-10-06 18:22:45 +02:00 committed by Vincent Laporte
parent 13c5657700
commit 8b92269f53
2 changed files with 0 additions and 34 deletions

View file

@ -1,32 +0,0 @@
{ stdenv, fetchurl, cmake, pkgconfig
, qtbase, 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 = [ qtbase 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 ];
broken = true;
};
}

View file

@ -4869,8 +4869,6 @@ in
ksmoothdock = libsForQt514.callPackage ../applications/misc/ksmoothdock { };
kst = libsForQt514.callPackage ../tools/graphics/kst { gsl = gsl_1; };
kstars = libsForQt514.callPackage ../applications/science/astronomy/kstars { };
kytea = callPackage ../tools/text/kytea { };