gnu: librsvg: Update to 2.46.0.
* gnu/packages/gnome.scm (librsvg-next): Update to 2.46.0. [arguments]: Patch SHELL in "po/Makefile.in.in". [native-inputs]: Replace RUST-1.27 with RUST-1.34.
This commit is contained in:
parent
e436379c94
commit
64855281c1
1 changed files with 6 additions and 5 deletions
|
@ -1397,7 +1397,7 @@ library.")
|
||||||
(define-public librsvg-next
|
(define-public librsvg-next
|
||||||
(package
|
(package
|
||||||
(name "librsvg")
|
(name "librsvg")
|
||||||
(version "2.44.12")
|
(version "2.46.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -1405,7 +1405,7 @@ library.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1h3qnqhr0l7pd2bxg69ki6ckl4srdwgr471dpp4jq9i4784hp0v6"))))
|
"1la3az2af2ccm6rp86b6wh0kq7kxzl4n8pli5qxhyic1rd91xj4n"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
@ -1423,6 +1423,7 @@ library.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each patch-shebang '("tap-driver.sh" "tap-test"))
|
(for-each patch-shebang '("tap-driver.sh" "tap-test"))
|
||||||
(patch-/usr/bin/file "configure")
|
(patch-/usr/bin/file "configure")
|
||||||
|
(patch-makefile-SHELL "po/Makefile.in.in")
|
||||||
#t))
|
#t))
|
||||||
(add-before 'configure 'pre-configure
|
(add-before 'configure 'pre-configure
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
@ -1460,9 +1461,9 @@ library.")
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
;; This is the minimum supported Rust version in Librsvg 2.44.
|
;; This is the minimum supported Rust version in Librsvg 2.46.
|
||||||
("rust" ,rust-1.27)
|
("rust" ,rust-1.34)
|
||||||
("cargo" ,rust-1.27 "cargo")
|
("cargo" ,rust-1.34 "cargo")
|
||||||
("vala" ,vala)
|
("vala" ,vala)
|
||||||
("glib" ,glib "bin") ; glib-mkenums, etc.
|
("glib" ,glib "bin") ; glib-mkenums, etc.
|
||||||
("gobject-introspection" ,gobject-introspection))) ; g-ir-compiler, etc.
|
("gobject-introspection" ,gobject-introspection))) ; g-ir-compiler, etc.
|
||||||
|
|
Reference in a new issue