me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-bresenham-0.1.

* gnu/packages/crates-io.scm (rust-bresenham-0.1): New variable.
master
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
1 changed files with 22 additions and 0 deletions

View File

@ -730,6 +730,28 @@ and no more (caveat: black_box is still missing!).")
that uses Serde for transforming structs into bytes and vice versa!")
(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
(package
(name "rust-generator")