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

81 lines
2.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, pkg-config, texinfo
2017-12-10 19:52:52 +03:00
, cairo, gd, libcerf, pango, readline, zlib
2015-12-12 19:47:03 +03:00
, withTeXLive ? false, texlive
2014-08-09 21:30:28 +04:00
, withLua ? false, lua
, libX11 ? null
, libXt ? null
, libXpm ? null
, libXaw ? null
, aquaterm ? false
2014-08-09 21:30:28 +04:00
, withWxGTK ? false, wxGTK ? null
, fontconfig ? null
, gnused ? null
2014-07-24 03:01:31 +04:00
, coreutils ? null
, withQt ? false, mkDerivation, qttools, qtbase, qtsvg
2017-12-10 20:11:52 +03:00
}:
assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null);
let
withX = libX11 != null && !aquaterm && !stdenv.isDarwin;
in
(if withQt then mkDerivation else stdenv.mkDerivation) rec {
pname = "gnuplot";
2021-06-05 11:14:31 +03:00
version = "5.4.2";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
2021-06-05 11:14:31 +03:00
sha256 = "sha256-5Xx14TGBM5UdMqg7zcSv8X/tKHIsTnHyMFz8KuHK57o=";
};
nativeBuildInputs = [ makeWrapper pkg-config texinfo ] ++ lib.optional withQt qttools;
2017-12-10 19:52:52 +03:00
buildInputs =
2017-12-10 19:52:52 +03:00
[ cairo gd libcerf pango readline zlib ]
2015-12-12 19:47:03 +03:00
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
2014-08-09 21:30:28 +04:00
++ lib.optional withLua lua
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
2017-12-10 20:11:52 +03:00
++ lib.optionals withQt [ qtbase qtsvg ]
++ lib.optional withWxGTK wxGTK;
postPatch = ''
# lrelease is in qttools, not in qtbase.
sed -i configure -e 's|''${QT5LOC}/lrelease|lrelease|'
2017-12-10 20:11:52 +03: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")
];
2020-03-18 02:30:23 +03:00
CXXFLAGS = lib.optionalString (stdenv.isDarwin && withQt) "-std=c++11";
2014-08-09 21:30:28 +04:00
postInstall = lib.optionalString withX ''
wrapProgram $out/bin/gnuplot \
--prefix PATH : '${gnused}/bin' \
--prefix PATH : '${coreutils}/bin' \
--prefix PATH : '${fontconfig.bin}/bin' \
--run '. ${./set-gdfontpath-from-fontconfig.sh}'
2020-03-18 02:30:23 +03:00
'' + lib.optionalString (stdenv.isDarwin && withQt) ''
wrapQtApp $out/bin/gnuplot
'';
2017-12-10 19:52:52 +03:00
enableParallelBuilding = true;
2014-08-09 21:30:28 +04:00
meta = with lib; {
homepage = "http://www.gnuplot.info/";
description = "A portable command-line driven graphing utility for many platforms";
platforms = platforms.linux ++ platforms.darwin;
2018-08-20 21:37:04 +03: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";
2018-08-20 21:37:04 +03:00
};
maintainers = with maintainers; [ lovek323 ];
};
}