diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-09-20 00:39:52 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-09-20 00:43:16 +0200 |
commit | 70bb5d88e08fd7fb18fe95f55811e8f645e10ad3 (patch) | |
tree | 675daf8992dfb428e33a1f96805119ec0917b568 /gnu | |
parent | d2cdef65605b9e14bfa02c3bf1612ab6b62f4a89 (diff) | |
download | guix-70bb5d88e08fd7fb18fe95f55811e8f645e10ad3.tar guix-70bb5d88e08fd7fb18fe95f55811e8f645e10ad3.tar.gz |
gnu: octave: Use texlive-union.
* gnu/packages/maths.scm (octave)[native-inputs]: Replace texlive with
texlive-union containing texlive-epsf.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 5380b4a99e..a42b81ac6b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1544,7 +1544,7 @@ script files.") ,@(package-inputs octave-cli))) (native-inputs `(("qttools" , qttools) ;for lrelease - ("texlive" ,texlive) ;for texi2dvi + ("texlive" ,(texlive-union (list texlive-epsf))) ; for texi2dvi ,@(package-native-inputs octave-cli))) (arguments (substitute-keyword-arguments (package-arguments octave-cli) |