diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-18 12:01:38 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:43:15 +0300 |
| commit | 72d5e06e626522f99665cb775482be19ff667a19 (patch) | |
| tree | b4f271475a08fc4337b411f3ce07c99a531852ae | |
| parent | e30ce5e420ac6779b5b47875bc76080abfa1c92c (diff) | |
gnu: Add rust-impl-more-0.1.
* gnu/packages/crates-io.scm (rust-impl-more-0.1): New variable.
Change-Id: I0593170538cde5ae18515982d7c8ae24342bda04
| -rw-r--r-- | gnu/packages/crates-io.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 56b394940c..d46a53aa5e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -31320,6 +31320,24 @@ variant of this library is available separately as @code{im}.") for uint and fixed hash.") (license (list license:expat license:asl2.0)))) +(define-public rust-impl-more-0.1 + (package + (name "rust-impl-more") + (version "0.1.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "impl-more" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0bdv06br4p766rcgihhjwqyz8fcz31xyaq14rr53vfh3kifafv10")))) + (build-system cargo-build-system) + (arguments (list #:tests? #f)) ; use of undeclared crate or module `eyre` + (home-page "https://github.com/robjtede/impl-more") + (synopsis "Concise, declarative trait implementation macros") + (description "Concise, declarative trait implementation macros.") + (license (list license:expat license:asl2.0)))) + (define-public rust-impl-rlp-0.3 (package (name "rust-impl-rlp") |
