guix-commits
[Top][All Lists]
Advanced

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

208/436: gnu: Add rust-clap-lex-0.6.


From: guix-commits
Subject: 208/436: gnu: Add rust-clap-lex-0.6.
Date: Sun, 5 Nov 2023 05:28:54 -0500 (EST)

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

commit 0c06e9e689fbc1796e1a7c2249ee99643386d636
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Oct 27 20:39:29 2023 +0300

    gnu: Add rust-clap-lex-0.6.
    
    * gnu/packages/crates-io.scm (rust-clap-lex-0.6): New variable.
    (rust-clap-lex-0.5): Inherit from rust-clap-lex-0.6.
    
    Change-Id: I4fdfa4d14d0cb3784dd4381621dd3cdbd79c0c96
---
 gnu/packages/crates-io.scm | 31 ++++++++++++++++++++++---------
 1 file changed, 22 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a9f8b19c1b..9185c20baa 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -13444,17 +13444,17 @@ for programs written with Clap.")
 with Clap to generate Fig completion scripts.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-clap-lex-0.5
+(define-public rust-clap-lex-0.6
   (package
     (name "rust-clap-lex")
-    (version "0.5.0")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "clap-lex" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "06vcvpvp65qggc5agbirzqk2di00gxg6vazzc3qlwzkw70qxm9id"))))
+    (version "0.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "clap-lex" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1l8bragdvim7mva9flvd159dskn2bdkpl0jqrr41wnjfn8pcfbvh"))))
     (build-system cargo-build-system)
     (home-page "https://github.com/clap-rs/clap/tree/master/clap_lex";)
     (synopsis "Command line parser for Clap")
@@ -13465,6 +13465,19 @@ stream of tokens.")
     ;; The user can choose either license.
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-clap-lex-0.5
+  (package
+    (inherit rust-clap-lex-0.6)
+    (name "rust-clap-lex")
+    (version "0.5.0")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "clap-lex" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "06vcvpvp65qggc5agbirzqk2di00gxg6vazzc3qlwzkw70qxm9id"))))))
+
 (define-public rust-clap-lex-0.3
   (package
     (inherit rust-clap-lex-0.5)



reply via email to

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