diff options
author | Jakub Kądziołka <kuba@kadziolka.net> | 2020-08-03 18:30:22 +0200 |
---|---|---|
committer | Jakub Kądziołka <kuba@kadziolka.net> | 2020-08-04 15:57:31 +0200 |
commit | cc73028b219c61a215327546c734911b22b3f8f5 (patch) | |
tree | 97dea49250bfa3d70f84c52d6f28c360e03723ac /gnu/packages | |
parent | 93b3287eb01d631b2df00f5874ea5da91a956dde (diff) | |
download | guix-cc73028b219c61a215327546c734911b22b3f8f5.tar.gz guix-cc73028b219c61a215327546c734911b22b3f8f5.zip |
gnu: rust-new-debug-unreachable: Don't include minor version in variable name.
* gnu/packages/crates-io.scm (rust-new-debug-unreachable-1.0): Rename to...
(rust-new-debug-unreachable-1): ...this.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 1d189b24cb..6c5e72e6d0 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7878,7 +7878,7 @@ pseudorandom number generator") `(#:skip-build? #t #:cargo-inputs (("rust-mac" ,rust-mac-0.1) - ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1.0)))) + ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1)))) (home-page "https://github.com/servo/futf") (synopsis "Handling fragments of UTF-8") (description "Handling fragments of UTF-8.") @@ -14448,7 +14448,7 @@ cryptographic library.") (license ;; licensed under either of these, at your option (list license:lgpl3 license:gpl2 license:gpl3)))) -(define-public rust-new-debug-unreachable-1.0 +(define-public rust-new-debug-unreachable-1 (package (name "rust-new-debug-unreachable") (version "1.0.3") @@ -14468,7 +14468,7 @@ cryptographic library.") (synopsis "Panic in debug, @code{intrinsics::unreachable()} in release") (description - "Panic in debug, @code{intrinsics::unreachable() }in + "Panic in debug, @code{intrinsics::unreachable()} in release (fork of debug_unreachable)") (license license:expat))) @@ -24610,7 +24610,7 @@ configurable byte storage.") (arguments `(#:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1) - ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1.0) + ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1) ("rust-phf-shared" ,rust-phf-shared-0.8) ("rust-precomputed-hash" ,rust-precomputed-hash-0.1) ("rust-serde" ,rust-serde-1)))) @@ -24639,7 +24639,7 @@ developed as part of the Servo project.") `(#:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1) ("rust-new-debug-unreachable" - ,rust-new-debug-unreachable-1.0) + ,rust-new-debug-unreachable-1) ("rust-phf-shared" ,rust-phf-shared-0.7) ("rust-precomputed-hash" ,rust-precomputed-hash-0.1) ("rust-serde" ,rust-serde-1) |