gnuplot: 5.2.7 -> 5.2.8

http://www.gnuplot.info/ReleaseNotes_5_2_8.html
This commit is contained in:
Will Dietz 2020-01-07 16:16:29 -06:00
parent 67f0c0b7ca
commit cf104600ab
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02

@ -19,11 +19,12 @@ let
withX = libX11 != null && !aquaterm && !stdenv.isDarwin;
in
(if withQt then mkDerivation else stdenv.mkDerivation) rec {
name = "gnuplot-5.2.7";
pname = "gnuplot";
version = "5.2.8";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/${name}.tar.gz";
sha256 = "1vglp4la40f5dpj0zdj63zprrkyjgzy068p35bz5dqxjyczm1zlp";
url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
sha256 = "0dxc52d17mpyb2xm24da1nvhlacryv0irwa0q5l1cjj0rx67d9k0";
};
nativeBuildInputs = [ makeWrapper pkgconfig texinfo ] ++ lib.optional withQt qttools;