me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-graphene-rs-0.18.

* gnu/packages/crates-gtk.scm (rust-graphene-rs-0.18): New variable.

Change-Id: I811f6f290a1a789683d024a40222448cd0fa4125
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Sergio Pastor Pérez 2023-11-28 22:11:49 +01:00 committed by Efraim Flashner
parent 25d492f2e5
commit 3fb7f36b06
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -1910,6 +1910,32 @@
(("rust-shell-words" ,rust-shell-words-0.1)
("rust-tempfile" ,rust-tempfile-3))))))
(define-public rust-graphene-rs-0.18
(package
(name "rust-graphene-rs")
(version "0.18.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "graphene-rs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "00f4q1ra4haap5i7lazwhkdgnb49fs8adk2nm6ki6mjhl76jh8iv"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; `Errors` doesn't implement `std::fmt::Display`
#:cargo-inputs (("rust-glib" ,rust-glib-0.18)
("rust-graphene-sys" ,rust-graphene-sys-0.18)
("rust-libc" ,rust-libc-0.2))
#:cargo-development-inputs
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
(native-inputs (list pkg-config))
(inputs (list glib graphene))
(home-page "https://gtk-rs.org/")
(synopsis "Rust bindings for the Graphene library")
(description "Rust bindings for the Graphene library.")
(license license:expat)))
(define-public rust-graphene-sys-0.18
(package
(name "rust-graphene-sys")