mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add rust-bresenham-0.1.
* gnu/packages/crates-io.scm (rust-bresenham-0.1): New variable.
This commit is contained in:
parent
ccdc86338d
commit
7dc8a3a553
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue