summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChloe Brown <chloe.brown.00@outlook.com>2022-11-04 01:03:25 +0000
committerChloe Brown <chloe.brown.00@outlook.com>2022-11-04 01:03:25 +0000
commit9d2a858f8fa3d3534b05237540be96acdd793375 (patch)
treed526a50db26f94c68a1744d1bff3383c5dc2466b
parentba2a57ffefffbe4a8ebe17b523fa493f4b19e08e (diff)
rust-pretty-hex: salvage from guix graveyard.
-rw-r--r--yellowsquid/packages/crates-io.scm19
1 files changed, 19 insertions, 0 deletions
diff --git a/yellowsquid/packages/crates-io.scm b/yellowsquid/packages/crates-io.scm
index 68737f5..6a7c64b 100644
--- a/yellowsquid/packages/crates-io.scm
+++ b/yellowsquid/packages/crates-io.scm
@@ -2799,6 +2799,25 @@ in order to be used in Cargo build scripts.")
(description "Bindings to PortAudio")
(license license:expat)))
+(define-public rust-pretty-hex-0.2
+ (package
+ (name "rust-pretty-hex")
+ (version "0.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "pretty-hex" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0c91f9sdwmn3mz2d414dp1xk4iw0k1nsif7lyqvhklzh57arjp5w"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs (("rust-heapless" ,rust-heapless-0.5))))
+ (home-page "https://github.com/wolandr/pretty-hex")
+ (synopsis "Pretty hex dump of bytes slice in the common style.")
+ (description "Pretty hex dump of bytes slice in the common style.")
+ (license license:expat)))
+
(define-public rust-priority-queue-1
(package
(name "rust-priority-queue")