guix-commits
[Top][All Lists]
Advanced

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

94/111: gnu: Add rust-include-flate-0.3.


From: guix-commits
Subject: 94/111: gnu: Add rust-include-flate-0.3.
Date: Thu, 21 Nov 2024 08:33:38 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit dc98b45eff04656569ea74417d7dbeef5ddb2461
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Nov 21 09:11:57 2024 +0200

    gnu: Add rust-include-flate-0.3.
    
    * gnu/packages/crates-io.scm (rust-include-flate-0.3): New variable.
    (rust-include-flate-0.2): Inherit from rust-include-flate-0.3.
    
    Change-Id: Ib4f01d3f14dceea4209979441e33e05d64193a8d
---
 gnu/packages/crates-io.scm | 32 +++++++++++++++++++++++++-------
 1 file changed, 25 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 3329374e81..4b4175149e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35270,24 +35270,23 @@ a trait for tuples.")
     (description "The procedural macro used by include_dir.")
     (license license:expat)))
 
-(define-public rust-include-flate-0.2
+(define-public rust-include-flate-0.3
   (package
     (name "rust-include-flate")
-    (version "0.2.0")
+    (version "0.3.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "include-flate" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1c5dsx6j9jwrd6calhxdgip85qjy45hc8v1740fr61k46ilibqf2"))))
+        (base32 "0ghiy1f2ipzw71nggrv6chard023nyjmvq2dyg0qcm39a1kw2jfz"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:skip-build? #t ; `#![feature]` may not be used on the stable release 
channel
-       #:cargo-inputs (("rust-include-flate-codegen-exports"
-                        ,rust-include-flate-codegen-exports-0.1)
+     `(#:tests? #f  ; `#![feature]` may not be used on the stable release 
channel
+       #:cargo-inputs (("rust-include-flate-codegen" 
,rust-include-flate-codegen-0.2)
                        ("rust-lazy-static" ,rust-lazy-static-1)
-                       ("rust-libflate" ,rust-libflate-1))))
+                       ("rust-libflate" ,rust-libflate-2))))
     (home-page "https://github.com/SOF3/include-flate";)
     (synopsis "Variant of @code{include_bytes!/include_str!} with compression")
     (description
@@ -35295,6 +35294,25 @@ a trait for tuples.")
 with compile-time deflation and runtime lazy inflation.")
     (license license:asl2.0)))
 
+(define-public rust-include-flate-0.2
+  (package
+    (inherit rust-include-flate-0.3)
+    (name "rust-include-flate")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "include-flate" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1c5dsx6j9jwrd6calhxdgip85qjy45hc8v1740fr61k46ilibqf2"))))
+    (arguments
+     `(#:skip-build? #t ; `#![feature]` may not be used on the stable release 
channel
+       #:cargo-inputs (("rust-include-flate-codegen-exports"
+                        ,rust-include-flate-codegen-exports-0.1)
+                       ("rust-lazy-static" ,rust-lazy-static-1)
+                       ("rust-libflate" ,rust-libflate-1))))))
+
 (define-public rust-include-flate-0.1
   (package
     (inherit rust-include-flate-0.2)



reply via email to

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