diff options
author | Jordan Moore <lockbox@struct.foo> | 2025-02-05 19:31:50 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-20 00:19:04 +0200 |
commit | 25f5d97878f07119b113348f7ea2614e6460e425 (patch) | |
tree | 969f4cf0130f14bbf96b7ad9adb39209f487761c | |
parent | 3862acaf9620f220d3bd4495d60f6c0352b726a2 (diff) | |
download | guix-25f5d97878f07119b113348f7ea2614e6460e425.tar.gz guix-25f5d97878f07119b113348f7ea2614e6460e425.zip |
gnu: Add rust-debug-ignore-1.
* gnu/packages/crates-io.scm (rust-debug-ignore-1): New variable.
Change-Id: Ia30df0f8425b0c3776710e1f81a6231e21f353bb
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r-- | gnu/packages/crates-io.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cac544cda8..fa08b3ef8f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19678,6 +19678,28 @@ sizes. Big-endian order is used. WARNING: Block must be aligned!") the Debug trait manually.") (license license:expat))) +(define-public rust-debug-ignore-1 + (package + (name "rust-debug-ignore") + (version "1.0.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "debug-ignore" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "08gwdny6124ggy4hyli92hdyiqc5j2z9lqhbw81k0mgljcfyvrzz")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs (("rust-serde-json" ,rust-serde-json-1)))) + (home-page "https://github.com/sunshowers-code/debug-ignore") + (synopsis "Newtype to skip a field while printing Debug output") + (description + "This package provides a newtype wrapper that causes a field to be +skipped while printing out Debug output.") + (license (list license:expat license:asl2.0)))) + (define-public rust-debug-unreachable-0.1 (package (name "rust-debug-unreachable") |