guix-commits
[Top][All Lists]
Advanced

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

205/272: gnu: Add rust-noop-proc-macro-0.3.


From: guix-commits
Subject: 205/272: gnu: Add rust-noop-proc-macro-0.3.
Date: Sat, 13 Feb 2021 05:55:03 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 971852d2164e2e4acbb9ebf1ea1defc371abfd99
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Feb 10 21:46:16 2021 +0100

    gnu: Add rust-noop-proc-macro-0.3.
    
    * gnu/packages/crates-io.scm (rust-noop-proc-macro-0.3): New variable.
    (rust-noop-proc-macro-0.2): Inherit from above.
---
 gnu/packages/crates-io.scm | 43 ++++++++++++++++++++++++++++---------------
 1 file changed, 28 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index c812ea0..d962b17 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -24355,29 +24355,42 @@ combinators library.")
       ;; This is an ancient version and all inputs are optional.
      `(#:skip-build? #t))))
 
-(define-public rust-noop-proc-macro-0.2
+(define-public rust-noop-proc-macro-0.3
   (package
     (name "rust-noop-proc-macro")
-    (version "0.2.1")
+    (version "0.3.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "noop_proc_macro" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0in1l0rjxzs4fylb6zad484z1c58jxyzchhc12k0cjrvm0y6zwsz"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "noop_proc_macro" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1j2v1c6ric4w9v12h34jghzmngcwmn0hll1ywly4h6lcm4rbnxh6"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
-    (home-page
-      "https://github.com/lu-zero/noop_proc_macro";)
-    (synopsis
-      "No-op proc_macro, literally does nothing")
+    (home-page "https://github.com/lu-zero/noop_proc_macro";)
+    (synopsis "No-op procedural macro, literally does nothing")
     (description
-      "No-op proc_macro, literally does nothing")
+     "This package provides a no-op procedural macro, which literally does
+nothing.")
     (license license:expat)))
 
+(define-public rust-noop-proc-macro-0.2
+  (package
+    (inherit rust-noop-proc-macro-0.3)
+    (name "rust-noop-proc-macro")
+    (version "0.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "noop_proc_macro" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0in1l0rjxzs4fylb6zad484z1c58jxyzchhc12k0cjrvm0y6zwsz"))))
+    (arguments `(#:skip-build? #t))))
+
 (define-public rust-normalize-line-endings-0.3
   (package
     (name "rust-normalize-line-endings")



reply via email to

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