diff options
author | Efraim Flashner <[email protected]> | 2024-12-26 13:20:33 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:19:25 +0200 |
commit | a7cebab188475d574161c4aa76136057bf495b8d (patch) | |
tree | e492d24c58033926a3467796b802e9893f59110d | |
parent | eb97d357c131698186867d4e9475aa15a958cf1b (diff) |
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
-rw-r--r-- | gnu/packages/crates-gtk.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/crates-gtk.scm b/gnu/packages/crates-gtk.scm index 933ce5c652..f35273f78f 100644 --- a/gnu/packages/crates-gtk.scm +++ b/gnu/packages/crates-gtk.scm @@ -4854,7 +4854,12 @@ library.") (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) |