diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-11-04 01:19:40 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-11-04 01:19:40 +0000 |
commit | 3915971e404f39f294fdbeb5b850eeae215b3647 (patch) | |
tree | 3bddee057ec0eca98519f8a8730b51f39ec98bb7 | |
parent | 2351b6fd785f26f430c8bfd2108311c39194d728 (diff) |
rust-assert-impl: salvage from graveyard.
-rw-r--r-- | yellowsquid/packages/crates-io.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/yellowsquid/packages/crates-io.scm b/yellowsquid/packages/crates-io.scm index b0322ad..ad572a8 100644 --- a/yellowsquid/packages/crates-io.scm +++ b/yellowsquid/packages/crates-io.scm @@ -262,6 +262,23 @@ log output.") (license (list license:expat license:asl2.0)))) +(define-public rust-assert-impl-0.1 + (package + (name "rust-assert-impl") + (version "0.1.3") + (source (origin + (method url-fetch) + (uri (crate-uri "assert-impl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "17jvig9rwdc1sf1j5q8q9k69njg3k8g7x7g6wcb711hcvq9l6in3")))) + (build-system cargo-build-system) + (home-page "https://github.com/upsuper/assert-impl") + (synopsis "Macro for static assert types implement a trait or not") + (description "Macro for static assert types implement a trait or not") + (license license:expat))) + (define-public rust-asio-sys-0.2 (package (name "rust-asio-sys") |