me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-mustache-0.9.

* gnu/packages/crates-io.scm (rust-mustache-0.9): New variable.
master
Nicolas Goaziou 2021-02-10 00:05:09 +01:00
parent 26b38bc6cb
commit 3f7e15dd63
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -21457,6 +21457,28 @@ which defines a default trait implementation, and @code{trait_impl} which uses
a default trait implementation you've defined.") a default trait implementation you've defined.")
(license license:lgpl2.1+))) (license license:lgpl2.1+)))
(define-public rust-mustache-0.9
(package
(name "rust-mustache")
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "mustache" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1dfakqld6zf995nnkgs9ybccgps4zcbfd4adaa2162njqpqnx5ai"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-log" ,rust-log-0.3)
("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/nickel-org/rust-mustache")
(synopsis "Rust implementation of Mustache")
(description "This package provides a Rust implementation of Mustache.")
(license (list license:expat license:asl2.0))))
(define-public rust-mysqlclient-sys-0.2 (define-public rust-mysqlclient-sys-0.2
(package (package
(name "rust-mysqlclient-sys") (name "rust-mysqlclient-sys")