2017-12-10 17:52:52 +01:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, pkgconfig, texinfo
|
|
|
|
, cairo, gd, libcerf, pango, readline, zlib
|
2015-12-12 17:47:03 +01:00
|
|
|
, withTeXLive ? false, texlive
|
2014-08-09 19:30:28 +02:00
|
|
|
, withLua ? false, lua
|
2007-09-21 22:43:43 +02:00
|
|
|
, libX11 ? null
|
|
|
|
, libXt ? null
|
|
|
|
, libXpm ? null
|
|
|
|
, libXaw ? null
|
2013-11-10 14:43:43 +01:00
|
|
|
, aquaterm ? false
|
2014-08-09 19:30:28 +02:00
|
|
|
, withWxGTK ? false, wxGTK ? null
|
2013-07-04 00:51:25 +02:00
|
|
|
, fontconfig ? null
|
|
|
|
, gnused ? null
|
2014-07-24 01:01:31 +02:00
|
|
|
, coreutils ? null
|
2017-12-10 18:11:52 +01:00
|
|
|
, withQt ? false, qttools, qtbase, qtsvg
|
|
|
|
}:
|
2007-08-04 17:11:48 +02:00
|
|
|
|
2013-02-18 00:00:48 +01:00
|
|
|
assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null);
|
2013-12-10 12:43:20 +01:00
|
|
|
let
|
2014-08-09 19:52:33 +02:00
|
|
|
withX = libX11 != null && !aquaterm && !stdenv.isDarwin;
|
2013-12-10 12:43:20 +01:00
|
|
|
in
|
2010-09-27 20:15:49 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-08 17:33:36 +02:00
|
|
|
name = "gnuplot-5.2.5";
|
2013-02-17 22:48:20 +01:00
|
|
|
|
2005-05-06 10:54:01 +02:00
|
|
|
src = fetchurl {
|
2010-09-27 20:15:49 +02:00
|
|
|
url = "mirror://sourceforge/gnuplot/${name}.tar.gz";
|
2018-10-08 17:33:36 +02:00
|
|
|
sha256 = "1ajw8xcb1kg2vy8n3rhrz71knjr2yivfavv9lqqzvp1dwv6b5783";
|
2005-05-06 10:54:01 +02:00
|
|
|
};
|
|
|
|
|
2017-12-10 18:11:52 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig texinfo ] ++ lib.optional withQt qttools;
|
2017-12-10 17:52:52 +01:00
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
buildInputs =
|
2017-12-10 17:52:52 +01:00
|
|
|
[ cairo gd libcerf pango readline zlib ]
|
2015-12-12 17:47:03 +01:00
|
|
|
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
|
2014-08-09 19:30:28 +02:00
|
|
|
++ lib.optional withLua lua
|
|
|
|
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
|
2017-12-10 18:11:52 +01:00
|
|
|
++ lib.optionals withQt [ qtbase qtsvg ]
|
|
|
|
++ lib.optional withWxGTK wxGTK;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# lrelease is in qttools, not in qtbase.
|
2018-01-14 23:03:38 +01:00
|
|
|
sed -i configure -e 's|''${QT5LOC}/lrelease|lrelease|'
|
2017-12-10 18:11:52 +01: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-18 00:00:48 +01:00
|
|
|
|
2014-08-09 19:30:28 +02:00
|
|
|
postInstall = lib.optionalString withX ''
|
2013-02-18 00:00:48 +01:00
|
|
|
wrapProgram $out/bin/gnuplot \
|
|
|
|
--prefix PATH : '${gnused}/bin' \
|
|
|
|
--prefix PATH : '${coreutils}/bin' \
|
2015-10-05 12:23:02 +02:00
|
|
|
--prefix PATH : '${fontconfig.bin}/bin' \
|
2013-02-18 00:00:48 +01:00
|
|
|
--run '. ${./set-gdfontpath-from-fontconfig.sh}'
|
|
|
|
'';
|
|
|
|
|
2017-12-10 17:52:52 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-08-09 19:30:28 +02:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = http://www.gnuplot.info/;
|
2010-09-27 20:15:49 +02:00
|
|
|
description = "A portable command-line driven graphing utility for many platforms";
|
2016-08-02 16:50:15 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2018-08-20 20:37:04 +02: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: ...
|
|
|
|
url = https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright;
|
|
|
|
};
|
2013-07-04 00:51:25 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2010-09-27 20:15:49 +02:00
|
|
|
};
|
2005-05-06 10:54:01 +02:00
|
|
|
}
|