diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2017-03-25 18:37:17 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-03-27 15:58:50 +0200 |
commit | 6e64766a861f4fa881320921738edef8b7da6bf1 (patch) | |
tree | 1104cb8d6ac27157054941065f96bb29fd28d8f0 /gnu/packages/maths.scm | |
parent | 689db38e3467f66725e8841eac72225110a75a17 (diff) | |
download | patches-6e64766a861f4fa881320921738edef8b7da6bf1.tar patches-6e64766a861f4fa881320921738edef8b7da6bf1.tar.gz |
gnu: gnuplot: Enable tikz backend.
* gnu/packages/maths.scm (gnuplot)[inputs]: Add lua.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index ed13556cb4..a5cdacb632 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -70,6 +70,7 @@ #:use-module (gnu packages less) #:use-module (gnu packages lisp) #:use-module (gnu packages logging) + #:use-module (gnu packages lua) #:use-module (gnu packages gnome) #:use-module (gnu packages guile) #:use-module (gnu packages xorg) @@ -495,7 +496,8 @@ singular value problems.") (inputs `(("readline" ,readline) ("cairo" ,cairo) ("pango" ,pango) - ("gd" ,gd))) + ("gd" ,gd) + ("lua" ,lua))) (native-inputs `(("pkg-config" ,pkg-config) ("texlive" ,texlive-minimal))) (home-page "http://www.gnuplot.info") |