gnu: Add rust-cassowary-0.3.

* gnu/packages/crates-io.scm (rust-cassowary-0.3): New variable.
This commit is contained in:
Nicolas Goaziou 2021-02-09 23:05:12 +01:00
parent fd04dd9122
commit adec593ee1
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -5610,6 +5610,31 @@ (define-public rust-cargon-0.0
used in argon2rs' bench suite.")
(license license:wtfpl2)))
(define-public rust-cassowary-0.3
(package
(name "rust-cassowary")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "cassowary" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0lvanj0gsk6pc1chqrh4k5k0vi1rfbgzmsk46dwy3nmrqyw711nz"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/dylanede/cassowary-rs")
(synopsis
"Implementation of the Cassowary linear constraint solving algorithm")
(description
"This package provides a Rust implementation of the Cassowary linear
constraint solving algorithm.
The Cassowary algorithm is designed for naturally laying out user interfaces
using linear constraints, like ``this button must line up with this text
box''.")
(license (list license:expat license:asl2.0))))
(define-public rust-cast-0.2
(package
(name "rust-cast")