mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
gnuplot: use texlive-new
This commit is contained in:
parent
08d842ea09
commit
269ae2e29d
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline
|
||||
, withTeXLive ? false, texLive
|
||||
, withTeXLive ? false, texlive
|
||||
, withLua ? false, lua
|
||||
, emacs ? null
|
||||
, libX11 ? null
|
||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs =
|
||||
[ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ]
|
||||
++ lib.optional withTeXLive texLive
|
||||
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
|
||||
++ lib.optional withLua lua
|
||||
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
|
||||
++ lib.optional withQt [ qt ]
|
||||
|
|
Loading…
Reference in a new issue