guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: gnuplot: Use G-expressions.


From: guix-commits
Subject: 02/04: gnu: gnuplot: Use G-expressions.
Date: Tue, 2 Aug 2022 14:10:48 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit a53bc4003682d9371fb8beda6d202e9a8c9556f2
Author: Paul A. Patience <paul@apatience.com>
AuthorDate: Tue Jul 19 16:35:00 2022 +0000

    gnu: gnuplot: Use G-expressions.
    
    * gnu/packages/maths.scm (gnuplot)[arguments]: Use G-expressions.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/maths.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index c647c06c8a..777486227f 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1134,11 +1134,12 @@ in the terminal or with an external viewer.")
      (list pkg-config texlive-tiny))
     (inputs
      (list cairo gd lua pango readline))
-    (arguments `(#:configure-flags (list (string-append
-                                          "--with-texdir=" %output
-                                          "/texmf-local/tex/latex/gnuplot"))
-                 ;; Plot on a dumb terminal during tests.
-                 #:make-flags '("GNUTERM=dumb")))
+    (arguments
+     (list #:configure-flags
+           #~(list (string-append "--with-texdir=" #$output
+                                  "/texmf-local/tex/latex/gnuplot"))
+           ;; Plot on a dumb terminal during tests.
+           #:make-flags #~'("GNUTERM=dumb")))
     (home-page "http://www.gnuplot.info";)
     (synopsis "Command-line driven graphing utility")
     (description "Gnuplot is a portable command-line driven graphing



reply via email to

[Prev in Thread] Current Thread [Next in Thread]