mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: graphviz: Update to 2.48.0.
* gnu/packages/graphviz.scm (graphviz): Update to 2.48.0. [source](uri): Adjust for upstream change. [source](file-name): Remove. [inputs]: Change from GUILE-2.0 to GUILE-3.0.
This commit is contained in:
parent
b389d1b18c
commit
09b002622e
1 changed files with 7 additions and 7 deletions
|
@ -63,15 +63,15 @@ (define-module (gnu packages graphviz)
|
||||||
(define-public graphviz
|
(define-public graphviz
|
||||||
(package
|
(package
|
||||||
(name "graphviz")
|
(name "graphviz")
|
||||||
(version "2.47.1")
|
(version "2.48.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://gitlab.com/graphviz/graphviz"
|
(uri (string-append "https://gitlab.com/api/v4/projects/4207231"
|
||||||
"/-/package_files/9573974/download"))
|
"/packages/generic/graphviz-releases/"
|
||||||
(file-name (string-append "graphviz-" version ".tar.xz"))
|
version "/graphviz-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hff831p300n989x1gmyzh3ix43xd2mgx01qgrrqill44n7zxfza"))))
|
"0lgv508zyfdv4wl95avaj58nmjhbvb5za65nhrkl5nn818ayvggn"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: rtest/rtest.sh is a ksh script (!). Add ksh as an input.
|
;; FIXME: rtest/rtest.sh is a ksh script (!). Add ksh as an input.
|
||||||
|
@ -103,8 +103,8 @@ (define-public graphviz
|
||||||
`(("libXrender" ,libxrender)
|
`(("libXrender" ,libxrender)
|
||||||
("libX11" ,libx11)
|
("libX11" ,libx11)
|
||||||
("gts" ,gts)
|
("gts" ,gts)
|
||||||
("gd" ,gd) ; FIXME: Our GD is too old
|
("gd" ,gd)
|
||||||
("guile" ,guile-2.0) ;Guile bindings
|
("guile" ,guile-3.0) ;Guile bindings
|
||||||
("pango" ,pango)
|
("pango" ,pango)
|
||||||
("fontconfig" ,fontconfig)
|
("fontconfig" ,fontconfig)
|
||||||
("freetype" ,freetype)
|
("freetype" ,freetype)
|
||||||
|
|
Loading…
Reference in a new issue