gnu: Add rust-iptables-0.5.

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

Change-Id: I8f164dd9af75fbafdc12a71169afaca01677c253
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Tomas Volf 2024-02-15 21:26:49 +01:00 committed by Efraim Flashner
parent 2d3fdf0c96
commit 40b861adc1
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -31203,6 +31203,28 @@ (define-public rust-ipnetwork-0.17
("rust-serde-derive" ,rust-serde-derive-1)
("rust-serde-json" ,rust-serde-json-1))))))
(define-public rust-iptables-0.5
(package
(name "rust-iptables")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "iptables" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0a96p8fq70v3z2rjf4c461pqhad6nkibs7sfgydkrf7ys1r0v7yk"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests can't be run in the build environment.
#:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1)
("rust-nix" ,rust-nix-0.27)
("rust-regex" ,rust-regex-1))))
(home-page "https://github.com/yaa110/rust-iptables")
(synopsis "Rust bindings for iptables")
(description "Rust bindings for iptables.")
(license license:expat)))
(define-public rust-is-debug-1
(package
(name "rust-is-debug")