diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-02-18 11:17:41 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-18 11:17:41 +0200 |
commit | 028b0deebbcff0c28c698c955644749a798faa71 (patch) | |
tree | 5e967344ffc93dc0ec09c18a95cd393d7db77614 | |
parent | a4c4b47b122347599e33d1ed6358053619de9f7f (diff) | |
download | patches-028b0deebbcff0c28c698c955644749a798faa71.tar patches-028b0deebbcff0c28c698c955644749a798faa71.tar.gz |
gnu: rust-nodrop-union-0.1: Upgrade to 0.1.11.
* gnu/packages/crates-io.scm (rust-nodrop-union-0.1): Upgrade to 0.1.11.
[arguments]: Skip build.
[properties]: Remove field.
-rw-r--r-- | gnu/packages/crates-io.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e4c9dffaca..3f87b38ec4 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7772,12 +7772,10 @@ prove a function can't ever panic.") (license (list license:asl2.0 license:expat)))) -;; This package requires features which are unavailable -;; on the stable releases of Rust. (define-public rust-nodrop-union-0.1 (package (name "rust-nodrop-union") - (version "0.1.10") + (version "0.1.11") (source (origin (method url-fetch) @@ -7785,14 +7783,14 @@ prove a function can't ever panic.") (file-name (string-append name "-" version ".crate")) (sha256 (base32 - "0jsnkdn9l8jlmb9h4wssi76sxnyxwnyi00p6y1p2gdq7c1gdw2b7")))) + "1h59pph19rxanyqcaid8pg73s7wmzdx3zhjv5snlim5qx606zxkc")))) (build-system cargo-build-system) + (arguments (#:skip-build? #t)) ; Depends on features not in stable Rust. (home-page "https://github.com/bluss/arrayvec") (synopsis "Wrapper type to inhibit drop (destructor)") (description "This package provides a wrapper type to inhibit drop -(destructor). Implementation crate for nodrop, the untagged unions +(destructor). Implementation crate for @code{nodrop}, the untagged unions implementation (which is unstable / requires nightly).") - (properties '((hidden? . #t))) (license (list license:asl2.0 license:expat)))) |