summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2021-09-18 16:13:05 +0000
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2021-11-03 13:28:34 +0100
commit6893f4a9ac35a43bfb57e4103bc03a404bc45c49 (patch)
tree52968ce854802257fde1fcbb5e8d49dbbc8ad979
parentc4600ccebc968b34e7594ff426af02518418f574 (diff)
gnu: Add rust-debug-helper-0.3.
* gnu/packages/crates-io.scm (rust-debug-helper-0.3): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/crates-io.scm19
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index ffca130454..6016a0810a 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -13012,6 +13012,25 @@ sizes. Big-endian order is used. WARNING: Block must be aligned!")
type.")
(license (list license:expat license:asl2.0))))
+(define-public rust-debug-helper-0.3
+ (package
+ (name "rust-debug-helper")
+ (version "0.3.12")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "debug-helper" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1a73xl73psmzyihd62jy30g1acfmgjmyi2k8khmh170mrq6x3yvn"))))
+ (build-system cargo-build-system)
+ (home-page "https://magiclen.org/debug-helper")
+ (synopsis "Declarative macros to implement the Debug trait manually")
+ (description "This crate provides declarative macros to help you implement
+the Debug trait manually.")
+ (license license:expat)))
+
(define-public rust-decimal-2
(package
(name "rust-decimal")