mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: rust-pango-sys-0.18: Adjust for our current pango version.
* gnu/packages/crates-gtk.scm (rust-pango-sys-0.18)[source]: Add a snippet to limit the highest version of pango we offer. Change-Id: Ia6f4af349a11f09ee757bc8e216b9dc9501b2618
This commit is contained in:
parent
eb97d357c1
commit
a7cebab188
1 changed files with 6 additions and 1 deletions
|
@ -4854,7 +4854,12 @@ (define-public rust-pango-sys-0.18
|
|||
(uri (crate-uri "pango-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1iaxalcaaj59cl9n10svh4g50v8jrc1a36kd7n9yahx8j7ikfrs3"))))
|
||||
(base32 "1iaxalcaaj59cl9n10svh4g50v8jrc1a36kd7n9yahx8j7ikfrs3"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; Don't try to use a version of pango newer than we have packaged.
|
||||
'(begin (substitute* "Cargo.toml"
|
||||
(("1\\.51") "1.50"))))))
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-glib-sys" ,rust-glib-sys-0.18)
|
||||
("rust-gobject-sys" ,rust-gobject-sys-0.18)
|
||||
|
|
Loading…
Reference in a new issue