3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-debug-unreachable-0.1.

* gnu/packages/crates-io.scm (rust-debug-unreachable-0.1): New variable.
This commit is contained in:
Efraim Flashner 2023-10-03 10:23:52 +03:00
parent 019165eeae
commit ff6c43e7e4
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -19074,6 +19074,27 @@ type.")
the Debug trait manually.")
(license license:expat)))
(define-public rust-debug-unreachable-0.1
(package
(name "rust-debug-unreachable")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "debug-unreachable" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1cx4vh1d0bxdpb8l9lyiv03az4527lykxy39s4a958swf2n2w0ws"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-unreachable" ,rust-unreachable-0.1))))
(home-page "https://github.com/reem/rust-debug-unreachable.git")
(synopsis
"unreachable!() in debug, std::intrinsics::unreachable() in release")
(description
"unreachable!() in debug, std::intrinsics::unreachable() in release.")
(license license:expat)))
(define-public rust-debugger-test-0.1
(package
(name "rust-debugger-test")