guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

12/28: gnu: Add rust-bytemuck-1.


From: guix-commits
Subject: 12/28: gnu: Add rust-bytemuck-1.
Date: Sun, 12 Jul 2020 08:55:46 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 561af003cbf6c9b9fff7aa35a156e74f99c9de0c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jul 12 12:45:20 2020 +0300

    gnu: Add rust-bytemuck-1.
    
    * gnu/packages/crates-io.scm (rust-bytemuck-1): New variable.
---
 gnu/packages/crates-io.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f2fdad9..1ffce52 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2255,6 +2255,26 @@ in a byte slice, fast.")
         ("rust-quickcheck" ,rust-quickcheck-0.6)
         ("rust-rand" ,rust-rand-0.4))))))
 
+(define-public rust-bytemuck-1
+  (package
+    (name "rust-bytemuck")
+    (version "1.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "bytemuck" version))
+        (file-name
+         (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0cclc9v10hc1abqrxgirg3qbwa3ra3s0dai3xiwv9v4j4bgi7yip"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/Lokathor/bytemuck";)
+    (synopsis "crate for mucking around with piles of bytes")
+    (description
+     "This package provides a crate for mucking around with piles of bytes.")
+    (license license:zlib)))
+
 (define-public rust-byteorder-1.3
   (package
     (name "rust-byteorder")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]