gnu: Add rust-pktparse-0.5.

* gnu/packages/crates-io.scm (rust-pktparse-0.5): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Milkey Mouse 2021-08-31 20:54:17 -07:00 committed by Nicolas Goaziou
parent ef13866936
commit 759530abf4
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -33181,6 +33181,30 @@ (define-public rust-pkg-config-0.3
(license (list license:asl2.0
license:expat))))
(define-public rust-pktparse-0.5
(package
(name "rust-pktparse")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "pktparse" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"17a78c29l070mlwjdr3bdph785c9v5rps0if3v0s21w4nwaybhck"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-nom" ,rust-nom-5)
("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/bestouff/pktparse-rs")
(synopsis "Collection of packet parsers")
(description "This package provides a collection of parsers for various
network packet formats.")
(license license:lgpl3)))
(define-public rust-plain-0.2
(package
(name "rust-plain")