2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, pkg-config, texinfo
|
2017-12-10 16:52:52 +00:00
|
|
|
, cairo, gd, libcerf, pango, readline, zlib
|
2015-12-12 16:47:03 +00:00
|
|
|
, withTeXLive ? false, texlive
|
2014-08-09 18:30:28 +01:00
|
|
|
, withLua ? false, lua
|
2007-09-21 21:43:43 +01:00
|
|
|
, libX11 ? null
|
|
|
|
, libXt ? null
|
|
|
|
, libXpm ? null
|
|
|
|
, libXaw ? null
|
2013-11-10 13:43:43 +00:00
|
|
|
, aquaterm ? false
|
2014-08-09 18:30:28 +01:00
|
|
|
, withWxGTK ? false, wxGTK ? null
|
2013-07-03 23:51:25 +01:00
|
|
|
, fontconfig ? null
|
|
|
|
, gnused ? null
|
2014-07-24 00:01:31 +01:00
|
|
|
, coreutils ? null
|
2019-12-07 05:04:37 +00:00
|
|
|
, withQt ? false, mkDerivation, qttools, qtbase, qtsvg
|
2017-12-10 17:11:52 +00:00
|
|
|
}:
|
2007-08-04 16:11:48 +01:00
|
|
|
|
2013-02-17 23:00:48 +00:00
|
|
|
assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null);
|
2013-12-10 11:43:20 +00:00
|
|
|
let
|
2014-08-09 18:52:33 +01:00
|
|
|
withX = libX11 != null && !aquaterm && !stdenv.isDarwin;
|
2013-12-10 11:43:20 +00:00
|
|
|
in
|
2019-12-07 05:04:37 +00:00
|
|
|
(if withQt then mkDerivation else stdenv.mkDerivation) rec {
|
2020-01-07 22:16:29 +00:00
|
|
|
pname = "gnuplot";
|
2020-12-05 18:26:30 +00:00
|
|
|
version = "5.4.1";
|
2013-02-17 21:48:20 +00:00
|
|
|
|
2005-05-06 09:54:01 +01:00
|
|
|
src = fetchurl {
|
2020-01-07 22:16:29 +00:00
|
|
|
url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
|
2020-12-05 18:26:30 +00:00
|
|
|
sha256 = "03jrqs5lvxmbbz2c4g17dn2hrxqwd3hfadk9q8wbkbkyas2h8sbb";
|
2005-05-06 09:54:01 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper pkg-config texinfo ] ++ lib.optional withQt qttools;
|
2017-12-10 16:52:52 +00:00
|
|
|
|
2010-07-28 16:35:01 +01:00
|
|
|
buildInputs =
|
2017-12-10 16:52:52 +00:00
|
|
|
[ cairo gd libcerf pango readline zlib ]
|
2015-12-12 16:47:03 +00:00
|
|
|
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
|
2014-08-09 18:30:28 +01:00
|
|
|
++ lib.optional withLua lua
|
|
|
|
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
|
2017-12-10 17:11:52 +00:00
|
|
|
++ lib.optionals withQt [ qtbase qtsvg ]
|
|
|
|
++ lib.optional withWxGTK wxGTK;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# lrelease is in qttools, not in qtbase.
|
2018-01-14 22:03:38 +00:00
|
|
|
sed -i configure -e 's|''${QT5LOC}/lrelease|lrelease|'
|
2017-12-10 17:11:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
(if withX then "--with-x" else "--without-x")
|
|
|
|
(if withQt then "--with-qt=qt5" else "--without-qt")
|
|
|
|
(if aquaterm then "--with-aquaterm" else "--without-aquaterm")
|
|
|
|
];
|
2013-02-17 23:00:48 +00:00
|
|
|
|
2020-03-17 23:30:23 +00:00
|
|
|
CXXFLAGS = lib.optionalString (stdenv.isDarwin && withQt) "-std=c++11";
|
|
|
|
|
2014-08-09 18:30:28 +01:00
|
|
|
postInstall = lib.optionalString withX ''
|
2013-02-17 23:00:48 +00:00
|
|
|
wrapProgram $out/bin/gnuplot \
|
|
|
|
--prefix PATH : '${gnused}/bin' \
|
|
|
|
--prefix PATH : '${coreutils}/bin' \
|
2015-10-05 11:23:02 +01:00
|
|
|
--prefix PATH : '${fontconfig.bin}/bin' \
|
2013-02-17 23:00:48 +00:00
|
|
|
--run '. ${./set-gdfontpath-from-fontconfig.sh}'
|
2020-03-17 23:30:23 +00:00
|
|
|
'' + lib.optionalString (stdenv.isDarwin && withQt) ''
|
|
|
|
wrapQtApp $out/bin/gnuplot
|
2013-02-17 23:00:48 +00:00
|
|
|
'';
|
|
|
|
|
2017-12-10 16:52:52 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-08-09 18:30:28 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.gnuplot.info/";
|
2010-09-27 19:15:49 +01:00
|
|
|
description = "A portable command-line driven graphing utility for many platforms";
|
2016-08-02 15:50:15 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2018-08-20 19:37:04 +01:00
|
|
|
license = {
|
|
|
|
# Essentially a BSD license with one modifaction:
|
|
|
|
# Permission to modify the software is granted, but not the right to
|
|
|
|
# distribute the complete modified source code. Modifications are to
|
|
|
|
# be distributed as patches to the released version. Permission to
|
|
|
|
# distribute binaries produced by compiling modified sources is granted,
|
|
|
|
# provided you: ...
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright";
|
2018-08-20 19:37:04 +01:00
|
|
|
};
|
2013-07-03 23:51:25 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2010-09-27 19:15:49 +01:00
|
|
|
};
|
2005-05-06 09:54:01 +01:00
|
|
|
}
|