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

60 lines
1.9 KiB
Nix
Raw Normal View History

2014-08-09 19:30:28 +02:00
{ lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline
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
2009-09-09 09:36:03 +00:00
, pango ? null
, cairo ? null
, pkgconfig ? null
2013-07-04 08:51:25 +10:00
, fontconfig ? null
, gnused ? null
2014-07-23 18:01:31 -05:00
, coreutils ? null
, withQt ? false, qt }:
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 {
2016-04-21 20:31:58 -07:00
name = "gnuplot-5.0.3";
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";
2016-04-21 20:31:58 -07:00
sha256 = "05f7p21d2b0r3h0af8i75bh2inx9pws1k4crx5c400927xgy6vjz";
2005-05-06 08:54:01 +00:00
};
2010-07-28 15:35:01 +00:00
buildInputs =
2014-08-09 19:52:33 +02:00
[ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ]
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 ]
2016-10-01 23:47:19 +03:00
++ lib.optional withQt qt
2013-07-04 08:51:25 +10:00
# compiling with wxGTK causes a malloc (double free) error on darwin
2014-08-09 19:30:28 +02:00
++ lib.optional (withWxGTK && !stdenv.isDarwin) wxGTK;
2010-09-27 18:15:49 +00:00
configureFlags =
(if withX then ["--with-x"] else ["--without-x"])
2014-07-23 18:01:31 -05:00
++ (if withQt then ["--enable-qt"] else ["--disable-qt"])
2014-08-09 19:30:28 +02:00
++ (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}'
'';
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
}