guix-commits
[Top][All Lists]
Advanced

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

33/39: gnu: Add rust-zstd-safe-3.


From: guix-commits
Subject: 33/39: gnu: Add rust-zstd-safe-3.
Date: Wed, 10 Mar 2021 17:52:25 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 7c0565dcb5fe9f346bc1c1fb8cb0555a80975432
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Mar 10 23:02:23 2021 +0100

    gnu: Add rust-zstd-safe-3.
    
    * gnu/packages/crates-io.scm (rust-zstd-safe-3): New variable.
    (rust-zstd-safe-2): Inherit from above.
---
 gnu/packages/crates-io.scm | 33 ++++++++++++++++++++++++++-------
 1 file changed, 26 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b1dc185..6b7becf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49273,29 +49273,48 @@ implementation that works everywhere, even WASM!")
 library.")
     (license license:expat)))
 
-(define-public rust-zstd-safe-2
+(define-public rust-zstd-safe-3
   (package
     (name "rust-zstd-safe")
-    (version "2.0.5+zstd.1.4.5")
+    (version "3.0.1+zstd.1.4.9")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "zstd-safe" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32
-         "0m8h1x030cj5bj7zxxf6gdp91bp0ays2vi9rlqllgxi71lp69yqw"))))
+        (base32 "133gassn5zy4vf0hhgsff3gxv1q3nc0bzi3qrqq7n4iqv6ycm1qk"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:cargo-inputs
+     `(#:skip-build? #t
+       #:cargo-inputs
        (("rust-libc" ,rust-libc-0.2)
         ("rust-zstd-sys" ,rust-zstd-sys-1))))
     (home-page "https://github.com/gyscos/zstd-rs";)
     (synopsis "Safe low-level bindings to the zstd compression library")
-    (description "This package provides safe low-level bindings to the zstd
-compression library.")
+    (description
+     "This package provides safe low-level bindings to the zstd compression
+library.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-zstd-safe-2
+  (package
+    (inherit rust-zstd-safe-3)
+    (name "rust-zstd-safe")
+    (version "2.0.5+zstd.1.4.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "zstd-safe" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0m8h1x030cj5bj7zxxf6gdp91bp0ays2vi9rlqllgxi71lp69yqw"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-libc" ,rust-libc-0.2)
+        ("rust-zstd-sys" ,rust-zstd-sys-1))))))
+
 ;; TODO: Unbundle zstd.
 (define-public rust-zstd-sys-1
   (package



reply via email to

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