tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gnuplot: build with libcerf
Orivej Desh
8 years ago
051cbf7c
e21e752c
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
graphics
gnuplot
default.nix
+7
-5
pkgs/tools/graphics/gnuplot/default.nix
···
1
-
{ lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline
0
2
, withTeXLive ? false, texlive
3
, withLua ? false, lua
4
, emacs ? null
···
8
, libXaw ? null
9
, aquaterm ? false
10
, withWxGTK ? false, wxGTK ? null
11
-
, pango ? null
12
-
, cairo ? null
13
-
, pkgconfig ? null
14
, fontconfig ? null
15
, gnused ? null
16
, coreutils ? null
···
28
sha256 = "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4";
29
};
30
0
0
31
buildInputs =
32
-
[ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ]
33
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
34
++ lib.optional withLua lua
35
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
···
49
--prefix PATH : '${fontconfig.bin}/bin' \
50
--run '. ${./set-gdfontpath-from-fontconfig.sh}'
51
'';
0
0
52
53
meta = with lib; {
54
homepage = http://www.gnuplot.info/;
···
1
+
{ lib, stdenv, fetchurl, makeWrapper, pkgconfig, texinfo
2
+
, cairo, gd, libcerf, pango, readline, zlib
3
, withTeXLive ? false, texlive
4
, withLua ? false, lua
5
, emacs ? null
···
9
, libXaw ? null
10
, aquaterm ? false
11
, withWxGTK ? false, wxGTK ? null
0
0
0
12
, fontconfig ? null
13
, gnused ? null
14
, coreutils ? null
···
26
sha256 = "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4";
27
};
28
29
+
nativeBuildInputs = [ makeWrapper pkgconfig texinfo ];
30
+
31
buildInputs =
32
+
[ cairo gd libcerf pango readline zlib ]
33
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
34
++ lib.optional withLua lua
35
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
···
49
--prefix PATH : '${fontconfig.bin}/bin' \
50
--run '. ${./set-gdfontpath-from-fontconfig.sh}'
51
'';
52
+
53
+
enableParallelBuilding = true;
54
55
meta = with lib; {
56
homepage = http://www.gnuplot.info/;