summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Geffke <m@f-a.nz>2025-03-26 16:52:30 +0000
committerFranz Geffke <m@f-a.nz>2025-03-26 16:52:30 +0000
commit4271eb26acbc53124b97cdd8b0d9e3957d26b293 (patch)
tree1f5b3625d3279cc4f517b071502efb26bc214fbb
parentd4c380720a56bbba1fe1f9b4fe0ba19c5cead003 (diff)
px: rust-byteorder: Added v1.4.3
-rw-r--r--px/packages/crates-io.scm25
1 files changed, 24 insertions, 1 deletions
diff --git a/px/packages/crates-io.scm b/px/packages/crates-io.scm
index 6b5f62c..02cf434 100644
--- a/px/packages/crates-io.scm
+++ b/px/packages/crates-io.scm
@@ -7,6 +7,7 @@
#:use-module (gnu packages crates-graphics)
#:use-module (gnu packages crates-windows)
#:use-module (gnu packages crates-crypto)
+ #:use-module (gnu packages crates-check)
#:use-module ((guix licenses)
#:prefix license:))
@@ -505,4 +506,26 @@ widely-used Serde framework.")
(home-page "https://github.com/rayon-rs/rayon")
(synopsis "Core APIs for Rayon")
(description "This package provides Core APIs for Rayon.")
- (license (list license:expat license:asl2.0)))) \ No newline at end of file
+ (license (list license:expat license:asl2.0))))
+
+(define-public rust-byteorder-1.4
+ (package
+ (name "rust-byteorder")
+ (version "1.4.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "byteorder" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0456lv9xi1a5bcm32arknf33ikv76p3fr9yzki4lb2897p2qkh8l"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs (("rust-quickcheck" ,rust-quickcheck-0.9)
+ ("rust-rand" ,rust-rand-0.7))))
+ (home-page "https://github.com/BurntSushi/byteorder")
+ (synopsis
+ "Library for reading/writing numbers in big-endian and little-endian")
+ (description
+ "This package provides Library for reading/writing numbers in big-endian and little-endian.")
+ (license (list license:unlicense license:expat)))) \ No newline at end of file