diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-12-17 22:56:43 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-28 14:10:19 -0500 |
commit | a053528422545e6a0284477dbebfb9e0803d4603 (patch) | |
tree | 01eddfac38e260ebfb151cd758dfef377a285807 /gnu | |
parent | b236ea0f8d97b3ec5ed8ac8205dbb9779feb0519 (diff) | |
download | guix-a053528422545e6a0284477dbebfb9e0803d4603.tar.gz |
gnu: Add rust-is-debug-1.
* gnu/packages/crates-io.scm (rust-is-debug-1): New variable.
Diffstat (limited to 'gnu')
-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 e4f4949b2a..e0dffcccda 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -25644,6 +25644,24 @@ bottlenecks encountered in highly concurrent code by avoiding shared writes and locking in the core framework.") (license license:expat))) +(define-public rust-is-debug-1 + (package + (name "rust-is-debug") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "is_debug" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "12bwspph88wgmzcyl8dg3s28gph41r9shfq8yzaj564xj7lril86")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/baoyachi/rust_is_debug") + (synopsis "get build model is debug") + (description "get build model is debug") + (license (list license:expat license:asl2.0)))) + (define-public rust-is-executable-1 (package (name "rust-is-executable") |