guix-patches
[Top][All Lists]
Advanced

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

[bug#56645] [PATCH 2/3] gnu: gnuplot: Use G-expressions.


From: Paul A. Patience
Subject: [bug#56645] [PATCH 2/3] gnu: gnuplot: Use G-expressions.
Date: Tue, 19 Jul 2022 16:35:00 +0000

* gnu/packages/maths.scm (gnuplot)[arguments]: Use G-expressions.
---
 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 8bbc0df077..1409fd9cb0 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1134,11 +1134,12 @@ (define-public gnuplot
      (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
--
2.37.0







reply via email to

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