me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cobs-0.2.

* gnu/packages/crates-io.scm (rust-cobs-0.2): New variable.

Change-Id: I3c8ddcd4af756a4a66b3753f0d26b360e21398eb
master
Efraim Flashner 2024-03-31 14:58:02 +03:00
parent 446da47a0a
commit bc567caab1
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -13271,6 +13271,30 @@ CMAKE environmental variable is set.")
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))
(define-public rust-cobs-0.2
(package
(name "rust-cobs")
(version "0.2.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "cobs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "05gd16mws4yd63h8jr3p08in8y8w21rpjp5jb55hzl9bgalh5fk7"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs (("rust-quickcheck" ,rust-quickcheck-0.5))))
(home-page "https://github.com/jamesmunns/cobs.rs")
(synopsis
"Implementation of the Consistent Overhead Byte Stuffing (COBS) algorithm")
(description
"This is an implementation of the @acronym{Consistent Overhead Byte
Stuffing, COBS} algorithm. COBS is an algorithm for transforming a message into
an encoding where a specific value (the \"sentinel\" value) is not used. This
value can then be used to mark frame boundaries in a serial communication channel.")
(license (list license:expat license:asl2.0))))
(define-public rust-codegenrs-3 (define-public rust-codegenrs-3
(package (package
(name "rust-codegenrs") (name "rust-codegenrs")