summary refs log tree commit diff
path: root/pkgs/tools/graphics/gnuplot
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-12 10:47:03 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-12 10:47:03 -0600
commit269ae2e29d1e25b98d6491fc0b5e14d0521c12b2 (patch)
treee5d1c669b723f722944d06eceadffe9d2ce4f453 /pkgs/tools/graphics/gnuplot
parent08d842ea09a4b868013e4a2ba0beea671d91e5e4 (diff)
downloadnixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.tar
nixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.tar.gz
nixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.tar.bz2
nixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.tar.lz
nixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.tar.xz
nixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.tar.zst
nixpkgs-269ae2e29d1e25b98d6491fc0b5e14d0521c12b2.zip
gnuplot: use texlive-new
Diffstat (limited to 'pkgs/tools/graphics/gnuplot')
-rw-r--r--pkgs/tools/graphics/gnuplot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix
index f8dd35576ff..8a9df4982a3 100644
--- a/pkgs/tools/graphics/gnuplot/default.nix
+++ b/pkgs/tools/graphics/gnuplot/default.nix
@@ -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 ]