guix-commits
[Top][All Lists]
Advanced

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

06/11: gnu: graphviz: Update to 7.0.1 and remove input labels.


From: guix-commits
Subject: 06/11: gnu: graphviz: Update to 7.0.1 and remove input labels.
Date: Sun, 20 Nov 2022 14:10:13 -0500 (EST)

apteryx pushed a commit to branch core-updates
in repository guix.

commit 59ddb7480343a5206c7e252e8436d73d868f6de1
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Nov 18 16:02:59 2022 -0500

    gnu: graphviz: Update to 7.0.1 and remove input labels.
    
    * gnu/packages/graphviz.scm (graphviz): Update to 7.0.1.
    [inputs]: Remove labels.
---
 gnu/packages/graphviz.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index a938800d04..6fbe92787d 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -67,7 +67,7 @@
 (define-public graphviz
   (package
     (name "graphviz")
-    (version "5.0.0")
+    (version "7.0.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://gitlab.com/api/v4/projects/4207231";
@@ -75,7 +75,7 @@
                                   version "/graphviz-" version ".tar.xz"))
               (sha256
                (base32
-                "0nkc90c3cvhvjy7z08f56l0fagkyaq63g6zszrr02bbsfxb7796s"))))
+                "1b6x3g03j7q77lzyvdp34hkzld5sg1l1ippc6sh1qxnmm59xs3ly"))))
     (build-system gnu-build-system)
     (arguments
      ;; FIXME: rtest/rtest.sh is a ksh script (!).  Add ksh as an input.
@@ -84,8 +84,7 @@
            #~(modify-phases %standard-phases
                (add-after 'install 'move-guile-bindings
                  (lambda* (#:key outputs #:allow-other-keys)
-                   (let* ((out (assoc-ref outputs "out"))
-                          (lib (string-append out "/lib"))
+                   (let* ((lib (string-append #$output "/lib"))
                           (extdir (string-append lib "/guile/"
                                                  #$(version-major+minor
                                                     (package-version
@@ -111,8 +110,10 @@
            libjpeg-turbo
            libpng))
     (native-inputs
-     (list bison swig pkg-config))
-    (outputs '("out" "doc"))                      ; 5 MiB of html + pdfs
+     (list bison
+           pkg-config
+           swig))
+    (outputs '("out" "doc"))            ;5 MiB of html + pdfs
     (home-page "https://www.graphviz.org/";)
     (synopsis "Graph visualization software")
     (description



reply via email to

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