dannym pushed a commit to branch master
in repository guix.

commit b940bbcdae3db1522e24a6e907785a1e264d096e
Author: Jordan Moore <lock...@struct.foo>
AuthorDate: Wed Feb 5 19:31:52 2025 +0100

    gnu: Add rust-swrite-0.1.
    
    * gnu/packages/crates-io.scm (rust-swrite-0.1): New variable.
    
    Change-Id: I1fd4ac9588817425728374256e76ce543680aac0
    Signed-off-by: Danny Milosavljevic <dan...@friendly-machines.com>
---
 gnu/packages/crates-io.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f9b7d70dd4..715dd6f02b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -80009,6 +80009,25 @@ executed by swayipc.")
 sway's IPC interface.")
     (license license:expat)))
 
+(define-public rust-swrite-0.1
+  (package
+    (name "rust-swrite")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "swrite" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "00vsicglylq4qq6dc497jdgzfnxi5mh7padwxijnvh1d1giyqgvz"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/rusticstuff/swrite";)
+    (synopsis "Infallible alternatives to write! for Strings")
+    (description
+     "This package provides infallible alternatives to write! and
+writeln! for Strings.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-sxd-document-0.3
   (package
     (name "rust-sxd-document")

Reply via email to