diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-18 15:48:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-18 15:48:23 +0100 |
commit | 8c20508f4889bff9d2c5e1a8e0f52aeaa4a7ea82 (patch) | |
tree | 803b8445215e20c61f778132fe9790d8eac5ca82 | |
parent | 676e21e4d28978be99585ca79e69703ac25c94fd (diff) |
gnu: rust-nodrop-union-0.1: Fix typo.
This follows up on commit 028b0deebbcff0c28c698c955644749a798faa71.
* gnu/packages/crates-io.scm (rust-nodrop-union-0.1)[arguments]: Quote.
-rw-r--r-- | gnu/packages/crates-io.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c455893044..024871b487 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7829,7 +7829,7 @@ prove a function can't ever panic.") (base32 "1h59pph19rxanyqcaid8pg73s7wmzdx3zhjv5snlim5qx606zxkc")))) (build-system cargo-build-system) - (arguments (#:skip-build? #t)) ; Depends on features not in stable Rust. + (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 |