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
|
2009-09-09 11:36:03 +02:00
|
|
|
, emacs ? null
|
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 {
|
2017-12-08 23:57:53 +01:00
|
|
|
name = "gnuplot-5.2.2";
|
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";
|
2017-12-08 23:57:53 +01:00
|
|
|
sha256 = "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4";
|
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.
|
|
|
|
substituteInPlace configure --replace '$'{QT5LOC}/lrelease lrelease
|
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
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
|
|
|
}
|