mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add rust-ipnetwork-0.17.
* gnu/packages/crates-io.scm (rust-ipnetwork-0.17): New variable.
This commit is contained in:
parent
c08fe8a906
commit
4e5d041c55
1 changed files with 26 additions and 0 deletions
|
@ -11633,6 +11633,32 @@ (define-public rust-ipnet-2
|
|||
stable toolchain.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-ipnetwork-0.17
|
||||
(package
|
||||
(name "rust-ipnetwork")
|
||||
(version "0.17.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "ipnetwork" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0sviri9ksb3cmhx3h0rcfy8pvpx7f0cx5ba1z87ydvf07amymhq2"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-serde" ,rust-serde-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-serde-json" ,rust-serde-json-1))))
|
||||
(home-page "https://crates.io/crates/ipnetwork")
|
||||
(synopsis "Work with IP CIDRs in Rust")
|
||||
(description "This package provides a library to work with IP CIDRs in
|
||||
Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-is-executable
|
||||
(package
|
||||
(name "rust-is-executable")
|
||||
|
|
Loading…
Reference in a new issue