unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#50362] [PATCH 01/26] gnu: Add rust-assert-fs-1.
@ 2021-09-03 22:27 phodina via Guix-patches via
  2021-09-03 22:33 ` [bug#50362] [PATCH 02/26] gnu: Add rust-progress-0.2 phodina via Guix-patches via
                   ` (24 more replies)
  0 siblings, 25 replies; 27+ messages in thread
From: phodina via Guix-patches via @ 2021-09-03 22:27 UTC (permalink / raw)
  To: 50362

* gnu/packages/crates-io.scm (rust-assert-fs-1): New variable.

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 087ffa1d27..e1af3aede5 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2713,8 +2713,39 @@ standard library.")
        #:cargo-development-inputs
        (("rust-docmatic" ,rust-docmatic-0.1))))))

+(define-public rust-assert-fs-1
+  (package
+    (name "rust-assert-fs")
+    (version "1.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "assert-fs" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0rcllf1d1l121fnsxy84bbqkg1sym5gs4mp0aw1nyv3f0sinmjmh"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-doc-comment" ,rust-doc-comment-0.3)
+        ("rust-globwalk" ,rust-globwalk-0.8)
+        ("rust-predicates" ,rust-predicates-2)
+        ("rust-predicates-core" ,rust-predicates-core-1)
+        ("rust-predicates-tree" ,rust-predicates-tree-1)
+        ("rust-tempfile" ,rust-tempfile-3))))
+    (home-page
+     "https://github.com/assert-rs/assert_fs")
+    (synopsis
+     "Filesystem fixtures and assertions for testing")
+    (description
+     "Filesystem fixtures and assertions for testing.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-assert-fs-0.11
   (package
+    (inherit rust-assert-fs-1)
     (name "rust-assert-fs")
     (version "0.11.3")
     (source
@@ -2726,7 +2757,6 @@ standard library.")
         (sha256
          (base32
           "1h1q90qskbylv4g3jyizdanj73835q7vvq7q10y555x4gnavmrjc"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
        (("rust-globwalk" ,rust-globwalk-0.5)
@@ -2735,12 +2765,7 @@ standard library.")
         ("rust-predicates-tree" ,rust-predicates-tree-1)
         ("rust-tempfile" ,rust-tempfile-3))
        #:cargo-development-inputs
-       (("rust-docmatic" ,rust-docmatic-0.1))))
-    (home-page "https://github.com/assert-rs/assert_fs")
-    (synopsis "File system fixtures and assertions for testing")
-    (description
-     "File system fixtures and assertions for testing.")
-    (license (list license:expat license:asl2.0))))
+       (("rust-docmatic" ,rust-docmatic-0.1))))))

 (define-public rust-assert-json-diff-1
   (package
--
2.32.0




^ permalink raw reply related	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2021-09-17 10:35 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-03 22:27 [bug#50362] [PATCH 01/26] gnu: Add rust-assert-fs-1 phodina via Guix-patches via
2021-09-03 22:33 ` [bug#50362] [PATCH 02/26] gnu: Add rust-progress-0.2 phodina via Guix-patches via
2021-09-03 22:34 ` [bug#50362] [PATCH 03/26] gnu: Add rust-supercow-0.1 phodina via Guix-patches via
2021-09-03 22:36 ` [bug#50362] [PATCH 04/26] gnu: Add rust-gethostname-0.2 phodina via Guix-patches via
2021-09-03 22:37 ` [bug#50362] [PATCH 05/26] gnu: Add rust-bufstream-0.1 phodina via Guix-patches via
2021-09-03 22:38 ` [bug#50362] [PATCH 06/26] gnu: Add rust-ascii-utils-0.9 phodina via Guix-patches via
2021-09-03 22:40 ` [bug#50362] [PATCH 07/26] gnu: Add rust-fast-chemail-0.9 phodina via Guix-patches via
2021-09-03 22:41 ` [bug#50362] [PATCH 08/26] gnu: Add rust-lettre-0.9 phodina via Guix-patches via
2021-09-03 22:41 ` [bug#50362] [PATCH 09/26] gnu: Add rust-email-0.0.20 phodina via Guix-patches via
2021-09-03 22:43 ` [bug#50362] [PATCH 10/26] gnu: Add rust-lettre-email-0.9 phodina via Guix-patches via
2021-09-03 22:43 ` [bug#50362] [PATCH 11/26] gnu: Add rust-charset-0.1 phodina via Guix-patches via
2021-09-03 22:44 ` [bug#50362] [PATCH 12/26] gnu: Add rust-quoted-printable-0.4 phodina via Guix-patches via
2021-09-03 22:45 ` [bug#50362] [PATCH 13/26] gnu: Add rust-mailparse-0.13 phodina via Guix-patches via
2021-09-03 22:46 ` [bug#50362] [PATCH 14/26] gnu: Add rust-maildir-0.5 phodina via Guix-patches via
2021-09-03 22:47 ` [bug#50362] [PATCH 15/26] gnu: Add rust-notmuch-0.6 phodina via Guix-patches via
2021-09-03 22:48 ` [bug#50362] [PATCH 16/26] gnu: Add rust-swayipc-command-builder-0.1 phodina via Guix-patches via
2021-09-03 22:49 ` [bug#50362] [PATCH 17/26] gnu: Add rust-swayipc-2 phodina via Guix-patches via
2021-09-03 22:50 ` [bug#50362] [PATCH 18/26] gnu: Add rust-buffering-nocopy-macro-0.1 phodina via Guix-patches via
2021-09-03 22:51 ` [bug#50362] [PATCH 19/26] gnu: Add rust-buffering-0.3 phodina via Guix-patches via
2021-09-03 22:52 ` [bug#50362] [PATCH 20/26] gnu: Add rust-buffering-0.4 phodina via Guix-patches via
2021-09-03 22:54 ` [bug#50362] [PATCH 21/26] gnu: Add rust-neli-0.4 phodina via Guix-patches via
2021-09-03 22:55 ` [bug#50362] [PATCH 22/26] gnu: Add rust-nl80211-0.0.2 phodina via Guix-patches via
2021-09-03 22:56 ` [bug#50362] [PATCH 23/26] gnu: Add rust-assert-impl-0.1 phodina via Guix-patches via
2021-09-03 22:57 ` [bug#50362] [PATCH 24/26] gnu: Add rust-caps-0.5 phodina via Guix-patches via
2021-09-03 22:58 ` [bug#50362] [PATCH 25/26] gnu: Add rust-dbus-0.9 phodina via Guix-patches via
2021-09-03 23:01 ` [bug#50362] [PATCH 26/26] gnu: Add rust-dbus-tree-0.9 phodina via Guix-patches via
2021-09-17 10:30   ` bug#50362: " Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).