gnu: Add rust-bresenham-0.1.

* gnu/packages/crates-io.scm (rust-bresenham-0.1): New variable.
This commit is contained in:
Valentin Ignatev 2020-01-15 03:24:40 +03:00 committed by Efraim Flashner
parent ccdc86338d
commit 7dc8a3a553
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -730,6 +730,28 @@ (define-public rust-bincode-1.1
that uses Serde for transforming structs into bytes and vice versa!") that uses Serde for transforming structs into bytes and vice versa!")
(license license:expat))) (license license:expat)))
(define-public rust-bresenham-0.1
(package
(name "rust-bresenham")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "bresenham" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1mvg3zcyll0m3z79jwbg183ha4kb7bw06rd286ijwvgn4mi13hdz"))))
(build-system cargo-build-system)
(home-page "https://github.com/mbr/bresenham-rs")
(synopsis
"Iterator-based integer-only implementation of Bresenham's line algorithm")
(description
"This package provides a fast, iterator-based integer-only implementation of
Bresenham's line algorithm.")
(license license:expat)))
(define-public rust-generator-0.6 (define-public rust-generator-0.6
(package (package
(name "rust-generator") (name "rust-generator")