Files
nixpkgs/pkgs/tools/graphics/gnuplot/default.nix
T

68 lines
2.0 KiB
Nix
Raw Normal View History

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