gnu: Add rust-pango-0.7.
* gnu/packages/crates-io.scm (rust-pango-0.7): New variable.
This commit is contained in:
parent
d23c34727f
commit
2d1cc3a4c9
1 changed files with 34 additions and 0 deletions
|
@ -12173,6 +12173,40 @@ normally prevent moving a type that has been borrowed from.")
|
||||||
"This package provides a library for padding strings at runtime.")
|
"This package provides a library for padding strings at runtime.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-pango-0.7
|
||||||
|
(package
|
||||||
|
(name "rust-pango")
|
||||||
|
(version "0.7.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "pango" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"11np7nxb69g3kid2l78b7k519x1wk1c3f9yy7swgzy24n5qs0grr"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-bitflags" ,rust-bitflags-1)
|
||||||
|
("rust-glib" ,rust-glib-0.8)
|
||||||
|
("rust-glib-sys" ,rust-glib-sys-0.9)
|
||||||
|
("rust-gobject-sys" ,rust-gobject-sys-0.9)
|
||||||
|
("rust-lazy-static" ,rust-lazy-static-1)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-pango-sys" ,rust-pango-sys-0.9)
|
||||||
|
("rust-gtk-rs-lgpl-docs" ,rust-gtk-rs-lgpl-docs-0.1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
|
||||||
|
(inputs
|
||||||
|
`(("pango" ,pango)))
|
||||||
|
(home-page "https://gtk-rs.org/")
|
||||||
|
(synopsis "Rust bindings for the Pango library")
|
||||||
|
(description
|
||||||
|
"Rust bindings for the Pango library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-pango-sys-0.9
|
(define-public rust-pango-sys-0.9
|
||||||
(package
|
(package
|
||||||
(name "rust-pango-sys")
|
(name "rust-pango-sys")
|
||||||
|
|
Reference in a new issue