mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 22:14:34 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
142 lines
3.5 KiB
Nix
142 lines
3.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
makeWrapper,
|
|
pkg-config,
|
|
texinfo,
|
|
cairo,
|
|
gd,
|
|
libcerf,
|
|
pango,
|
|
readline,
|
|
zlib,
|
|
withTeXLive ? false,
|
|
texliveSmall,
|
|
withLua ? false,
|
|
lua,
|
|
withCaca ? false,
|
|
libcaca,
|
|
libX11 ? null,
|
|
libXt ? null,
|
|
libXpm ? null,
|
|
libXaw ? null,
|
|
aquaterm ? false,
|
|
withWxGTK ? false,
|
|
wxGTK32,
|
|
Cocoa,
|
|
fontconfig ? null,
|
|
gnused ? null,
|
|
coreutils ? null,
|
|
withQt ? false,
|
|
mkDerivation,
|
|
qttools,
|
|
qtbase,
|
|
qtsvg,
|
|
}:
|
|
|
|
assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null);
|
|
let
|
|
withX = libX11 != null && !aquaterm && !stdenv.hostPlatform.isDarwin;
|
|
in
|
|
(if withQt then mkDerivation else stdenv.mkDerivation) rec {
|
|
pname = "gnuplot";
|
|
version = "6.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-6FpmDBoqGAj/JPfmmYH/y6xmpFydz3EbZWELJupxN5o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
pkg-config
|
|
texinfo
|
|
] ++ lib.optional withQt qttools;
|
|
|
|
buildInputs =
|
|
[
|
|
cairo
|
|
gd
|
|
libcerf
|
|
pango
|
|
readline
|
|
zlib
|
|
]
|
|
++ lib.optional withTeXLive texliveSmall
|
|
++ lib.optional withLua lua
|
|
++ lib.optional withCaca libcaca
|
|
++ lib.optionals withX [
|
|
libX11
|
|
libXpm
|
|
libXt
|
|
libXaw
|
|
]
|
|
++ lib.optionals withQt [
|
|
qtbase
|
|
qtsvg
|
|
]
|
|
++ lib.optional withWxGTK wxGTK32
|
|
++ lib.optional (withWxGTK && stdenv.hostPlatform.isDarwin) Cocoa;
|
|
|
|
postPatch = ''
|
|
# lrelease is in qttools, not in qtbase.
|
|
sed -i configure -e 's|''${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")
|
|
]
|
|
++ lib.optional withCaca "--with-caca"
|
|
++ lib.optional withTeXLive "--with-texdir=${placeholder "out"}/share/texmf/tex/latex/gnuplot";
|
|
|
|
CXXFLAGS = lib.optionalString (stdenv.hostPlatform.isDarwin && withQt) "-std=c++11";
|
|
|
|
# we'll wrap things ourselves
|
|
dontWrapGApps = true;
|
|
dontWrapQtApps = true;
|
|
|
|
# binary wrappers don't support --run
|
|
postInstall = lib.optionalString withX ''
|
|
wrapProgramShell $out/bin/gnuplot \
|
|
--prefix PATH : '${
|
|
lib.makeBinPath [
|
|
gnused
|
|
coreutils
|
|
fontconfig.bin
|
|
]
|
|
}' \
|
|
"''${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"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.gnuplot.info/";
|
|
description = "Portable command-line driven graphing utility for many platforms";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
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";
|
|
};
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
mainProgram = "gnuplot";
|
|
};
|
|
}
|