mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add rust-gdk-pixbuf-0.18.
* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-0.18): New variable. (rust-gdk-pixbuf-0.17): Inherit from rust-gdk-pixbuf-0.18. Change-Id: I33e260ac3e11af9d37b951c0aded8c49b4a07116 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
cfa4ea26a8
commit
9ec6e5b6cd
1 changed files with 31 additions and 9 deletions
|
@ -511,8 +511,38 @@ (define-public rust-gdk-0.12
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))))
|
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))))
|
||||||
|
|
||||||
|
(define-public rust-gdk-pixbuf-0.18
|
||||||
|
(package
|
||||||
|
(name "rust-gdk-pixbuf")
|
||||||
|
(version "0.18.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "gdk-pixbuf" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1wy68zaxd1914qayjz4jn6k0i2759sx7k26hcmmma7d8fgnw5jdv"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; `Errors` doesn't implement `std::fmt::Display`
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-gdk-pixbuf-sys" ,rust-gdk-pixbuf-sys-0.18)
|
||||||
|
("rust-gio" ,rust-gio-0.18)
|
||||||
|
("rust-glib" ,rust-glib-0.18)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-once-cell" ,rust-once-cell-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(inputs (list glib gdk-pixbuf))
|
||||||
|
(home-page "https://gtk-rs.org/")
|
||||||
|
(synopsis "Rust bindings for the GdkPixbuf library")
|
||||||
|
(description "Rust bindings for the @code{GdkPixbuf} library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-gdk-pixbuf-0.17
|
(define-public rust-gdk-pixbuf-0.17
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-gdk-pixbuf-0.18)
|
||||||
(name "rust-gdk-pixbuf")
|
(name "rust-gdk-pixbuf")
|
||||||
(version "0.17.10")
|
(version "0.17.10")
|
||||||
(source
|
(source
|
||||||
|
@ -522,7 +552,6 @@ (define-public rust-gdk-pixbuf-0.17
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "05q7ajsp2z8xi355h26k7lvq7n3lj9xm61vhn045g3238v46npb9"))))
|
(base32 "05q7ajsp2z8xi355h26k7lvq7n3lj9xm61vhn045g3238v46npb9"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; `Errors` doesn't implement `std::fmt::Display`
|
`(#:tests? #f ; `Errors` doesn't implement `std::fmt::Display`
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -534,14 +563,7 @@ (define-public rust-gdk-pixbuf-0.17
|
||||||
("rust-once-cell" ,rust-once-cell-1))
|
("rust-once-cell" ,rust-once-cell-1))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
|
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
|
||||||
(native-inputs
|
(inputs (list gdk-pixbuf))))
|
||||||
(list pkg-config))
|
|
||||||
(inputs
|
|
||||||
(list gdk-pixbuf))
|
|
||||||
(home-page "https://gtk-rs.org/")
|
|
||||||
(synopsis "Rust bindings for the GdkPixbuf library")
|
|
||||||
(description "Rust bindings for the @code{GdkPixbuf} library")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-gdk-pixbuf-0.15
|
(define-public rust-gdk-pixbuf-0.15
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue