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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
3.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, pkg-config, texinfo
2017-12-10 17:52:52 +01:00
, 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
, withCaca ? false, libcaca
, libX11 ? null
, libXt ? null
, libXpm ? null
, libXaw ? null
, aquaterm ? false
2022-10-14 06:46:56 +02:00
, withWxGTK ? false, wxGTK32, Cocoa
, fontconfig ? null
, gnused ? null
2014-07-24 01:01:31 +02:00
, coreutils ? null
, withQt ? false, mkDerivation, qttools, qtbase, qtsvg
2017-12-10 18:11:52 +01: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";
2023-06-14 08:41:55 +02:00
version = "5.4.8";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
2023-06-14 08:41:55 +02:00
sha256 = "sha256-kxJ5x8qtGv99RstHZvH/QcJtm+na8Lzwx53u7j2R9c8=";
};
nativeBuildInputs = [ makeWrapper pkg-config texinfo ] ++ lib.optional withQt qttools;
2017-12-10 17:52:52 +01: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.optional withCaca libcaca
2014-08-09 19:30:28 +02:00
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
2017-12-10 18:11:52 +01:00
++ lib.optionals withQt [ qtbase qtsvg ]
2022-10-14 06:46:56 +02:00
++ lib.optional withWxGTK wxGTK32
++ lib.optional (withWxGTK && stdenv.isDarwin) Cocoa;
2017-12-10 18:11:52 +01:00
postPatch = ''
# lrelease is in qttools, not in qtbase.
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")
] ++ lib.optional withCaca "--with-caca";
2020-03-18 00:30:23 +01:00
CXXFLAGS = lib.optionalString (stdenv.isDarwin && withQt) "-std=c++11";
2023-04-30 19:28:44 +02:00
# we'll wrap things ourselves
dontWrapGApps = true;
dontWrapQtApps = true;
# binary wrappers don't support --run
2014-08-09 19:30:28 +02:00
postInstall = lib.optionalString withX ''
2023-04-30 19:28:44 +02:00
wrapProgramShell $out/bin/gnuplot \
--prefix PATH : '${lib.makeBinPath [ gnused coreutils fontconfig.bin ]}' \
2023-04-30 19:28:44 +02:00
"''${gappsWrapperArgs[@]}" \
"''${qtWrapperArgs[@]}" \
--run '. ${./set-gdfontpath-from-fontconfig.sh}'
'';
# When cross-compiling, don't build docs and demos.
# Inspiration taken from https://sourceforge.net/p/gnuplot/gnuplot-main/merge-requests/10/
makeFlags = lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
"-C src"
];
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/";
description = "A portable command-line driven graphing utility for many platforms";
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";
2018-08-20 20:37:04 +02:00
};
maintainers = with maintainers; [ lovek323 ];
};
}