diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 18:58:35 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 18:58:35 -0600 |
commit | 3cebf4ff2b2416def258a5d05c624467a8257427 (patch) | |
tree | 66284a596410fc486efbede8ecf2dae09a3ab2b2 | |
parent | d38441beaa43f3f1d90d9b1cb240f863c65e9a07 (diff) | |
download | guix-msglm-3cebf4ff2b2416def258a5d05c624467a8257427.tar.gz guix-msglm-3cebf4ff2b2416def258a5d05c624467a8257427.tar.bz2 guix-msglm-3cebf4ff2b2416def258a5d05c624467a8257427.zip |
add rust-serde@0.7
-rw-r--r-- | unlustig.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 8c7085d..7f3979b 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1650,3 +1650,23 @@ binding to JVM APIs from Rust.") "This package provides Bindings to Core Foundation for @code{macOS}.") (license (list license:expat license:asl2.0)))) +(define-public rust-serde-0.7 + (package + (name "rust-serde") + (version "0.7.15") + (source + (origin + (method url-fetch) + (uri (crate-uri "serde" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "14haziy946c4m8h5bgg3c98558rbjim3jnl1c5zjdi4fm8r0f3hv")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-clippy" ,rust-clippy-0.0.302)))) + (home-page "https://serde.rs") + (synopsis "generic serialization/deserialization framework") + (description + "This package provides a generic serialization/deserialization framework.") + (license (list license:expat license:asl2.0)))) + |