diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:05:26 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:05:26 -0600 |
commit | 1350b6566751e2c984f165b64fa568a55425bb8f (patch) | |
tree | e9b72c75ed2323242d6484ab3f5ccda678cfc400 /unlustig.scm | |
parent | 4aec35eef7ea318bb5091feace42b45191431743 (diff) | |
download | guix-msglm-1350b6566751e2c984f165b64fa568a55425bb8f.tar.gz guix-msglm-1350b6566751e2c984f165b64fa568a55425bb8f.tar.bz2 guix-msglm-1350b6566751e2c984f165b64fa568a55425bb8f.zip |
add rust-ouroboros@0.10
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index a710a9f..b76373d 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -907,3 +907,25 @@ the OS-level clipboard.") "This package provides bindings to tolk.dll, a library to talk to screen readers.") (license license:expat))) +(define-public rust-ouroboros-0.10 + (package + (name "rust-ouroboros") + (version "0.10.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "ouroboros" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1phbp9wjp36bvkwlyvr2zznaack6xcvg0z1869r3i33iy5j6s8w4")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-aliasable" ,rust-aliasable-0.1) + ("rust-ouroboros-macro" ,rust-ouroboros-macro-0.10) + ("rust-stable-deref-trait" ,rust-stable-deref-trait-1)))) + (home-page "https://github.com/someguynamedjosh/ouroboros") + (synopsis "Easy, safe self-referential struct generation") + (description + "This package provides Easy, safe self-referential struct generation.") + (license (list license:expat license:asl2.0)))) + |