mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: gnuplot: Update to 5.4.1.
* gnu/packages/maths.scm (gnuplot): Update to 5.4.1. [arguments]: Set GNUTERM in #:make-flags.
This commit is contained in:
parent
1b2c32dc91
commit
9aa0a98ea0
1 changed files with 5 additions and 3 deletions
|
@ -919,14 +919,14 @@ (define-public scalapack
|
||||||
(define-public gnuplot
|
(define-public gnuplot
|
||||||
(package
|
(package
|
||||||
(name "gnuplot")
|
(name "gnuplot")
|
||||||
(version "5.2.7")
|
(version "5.4.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/gnuplot/gnuplot/"
|
(uri (string-append "mirror://sourceforge/gnuplot/gnuplot/"
|
||||||
version "/gnuplot-"
|
version "/gnuplot-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1vglp4la40f5dpj0zdj63zprrkyjgzy068p35bz5dqxjyczm1zlp"))))
|
(base32 "03jrqs5lvxmbbz2c4g17dn2hrxqwd3hfadk9q8wbkbkyas2h8sbb"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("readline" ,readline)
|
(inputs `(("readline" ,readline)
|
||||||
("cairo" ,cairo)
|
("cairo" ,cairo)
|
||||||
|
@ -938,7 +938,9 @@ (define-public gnuplot
|
||||||
("texlive" ,texlive-tiny)))
|
("texlive" ,texlive-tiny)))
|
||||||
(arguments `(#:configure-flags (list (string-append
|
(arguments `(#:configure-flags (list (string-append
|
||||||
"--with-texdir=" %output
|
"--with-texdir=" %output
|
||||||
"/texmf-local/tex/latex/gnuplot"))))
|
"/texmf-local/tex/latex/gnuplot"))
|
||||||
|
;; Plot on a dumb terminal during tests.
|
||||||
|
#:make-flags '("GNUTERM=dumb")))
|
||||||
(home-page "http://www.gnuplot.info")
|
(home-page "http://www.gnuplot.info")
|
||||||
(synopsis "Command-line driven graphing utility")
|
(synopsis "Command-line driven graphing utility")
|
||||||
(description "Gnuplot is a portable command-line driven graphing
|
(description "Gnuplot is a portable command-line driven graphing
|
||||||
|
|
Loading…
Reference in a new issue