1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +02:00

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 <dannym@friendly-machines.com>
This commit is contained in:
Jordan Moore 2025-02-05 19:31:52 +01:00 committed by Danny Milosavljevic
parent d480598048
commit b940bbcdae
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -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")