mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
gnuplot: pass aquaterm request explicitely (see #1197)
This commit is contained in:
parent
9f7510113e
commit
3941c15b59
@ -16,7 +16,9 @@
|
||||
, coreutils ? null }:
|
||||
|
||||
assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null);
|
||||
|
||||
let
|
||||
withX = libX11 != null && !aquaterm;
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnuplot-4.6.3";
|
||||
|
||||
@ -25,8 +27,6 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1xd7gqdhlk7k1p9yyqf9vkk811nadc7m4si0q3nb6cpv4pxglpyz";
|
||||
};
|
||||
|
||||
withX = libX11 != null && !aquaterm;
|
||||
|
||||
buildInputs =
|
||||
[ zlib gd texinfo readline emacs lua texLive
|
||||
pango cairo pkgconfig makeWrapper ]
|
||||
@ -34,7 +34,10 @@ stdenv.mkDerivation rec {
|
||||
# compiling with wxGTK causes a malloc (double free) error on darwin
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) wxGTK;
|
||||
|
||||
configureFlags = if withX then ["--with-x"] else ["--without-x"];
|
||||
configureFlags =
|
||||
(if withX then ["--with-x"] else ["--without-x"])
|
||||
++ (if aquaterm then ["--with-aquaterm"] else ["--without-aquaterm"])
|
||||
;
|
||||
|
||||
postInstall = stdenv.lib.optionalString withX ''
|
||||
wrapProgram $out/bin/gnuplot \
|
||||
|
Loading…
Reference in New Issue
Block a user