me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-embed-resource-1.3.

* gnu/packages/crates-io.scm (rust-embed-resource-1.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-19 16:16:40 +03:00 committed by Efraim Flashner
parent e47ea56918
commit c0312f9475
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -3377,6 +3377,32 @@ floating-point primitives to an @code{io::Write}.")
@code{Right} is a general purpose sum type with two cases.")
(license (list license:expat license:asl2.0))))
(define-public rust-embed-resource-1.3
(package
(name "rust-embed-resource")
(version "1.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "embed-resource" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0v1adsw9mq7gjjjhx4hcjhqppdf4vm0gbcgh7sxirbxh99la9axv"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-vswhom" ,rust-vswhom-0.1)
("rust-winreg" ,rust-winreg-0.6))))
(home-page "https://github.com/nabijaczleweli/rust-embed-resource")
(synopsis
"Cargo library to handle compilation and inclusion of Windows resources")
(description
"This package provides a Cargo library to handle compilation and
inclusion of Windows resources in the most resilient fashion imaginable.")
(license license:expat)))
(define-public rust-encode-unicode-0.3
(package
(name "rust-encode-unicode")