diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-03 10:23:52 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-18 11:36:09 +0300 |
commit | 019165eeae0fc72b5a9265c8ad8c1280e1adb431 (patch) | |
tree | 6d7c8786b4ab47de2f3d3476c1f5d15f6715dda2 | |
parent | 41a41b65049bec061ffc7eaecf425600140e7bb8 (diff) | |
download | guix-019165eeae0fc72b5a9265c8ad8c1280e1adb431.tar.gz |
gnu: Add rust-debugid-0.8.
* gnu/packages/crates-io.scm (rust-debugid-0.8): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d9f157916d..79c2bfeacc 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19127,6 +19127,30 @@ debugger and run commands while verifying the output.") verifying the contents.") (license (list license:expat license:asl2.0)))) +(define-public rust-debugid-0.8 + (package + (name "rust-debugid") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "debugid" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "13f15dfvn07fa7087pmacixqqv0lmj4hv93biw4ldr48ypk55xdy")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-serde" ,rust-serde-1) + ("rust-uuid" ,rust-uuid-1)) + #:cargo-development-inputs + (("rust-serde-json" ,rust-serde-json-1)))) + (home-page "https://sentry.io/") + (synopsis "Common reusable types for implementing the sentry.io protocol") + (description + "Common reusable types for implementing the sentry.io protocol.") + (license license:asl2.0))) + (define-public rust-decimal-2 (package (name "rust-decimal") |