gnuplot: build with libcerf

+7 -5
+7 -5
pkgs/tools/graphics/gnuplot/default.nix
··· 1 - { lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline 1 + { lib, stdenv, fetchurl, makeWrapper, pkgconfig, texinfo 2 + , cairo, gd, libcerf, pango, readline, zlib 2 3 , withTeXLive ? false, texlive 3 4 , withLua ? false, lua 4 5 , emacs ? null ··· 8 9 , libXaw ? null 9 10 , aquaterm ? false 10 11 , withWxGTK ? false, wxGTK ? null 11 - , pango ? null 12 - , cairo ? null 13 - , pkgconfig ? null 14 12 , fontconfig ? null 15 13 , gnused ? null 16 14 , coreutils ? null ··· 28 26 sha256 = "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4"; 29 27 }; 30 28 29 + nativeBuildInputs = [ makeWrapper pkgconfig texinfo ]; 30 + 31 31 buildInputs = 32 - [ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ] 32 + [ cairo gd libcerf pango readline zlib ] 33 33 ++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; }) 34 34 ++ lib.optional withLua lua 35 35 ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] ··· 49 49 --prefix PATH : '${fontconfig.bin}/bin' \ 50 50 --run '. ${./set-gdfontpath-from-fontconfig.sh}' 51 51 ''; 52 + 53 + enableParallelBuilding = true; 52 54 53 55 meta = with lib; { 54 56 homepage = http://www.gnuplot.info/;