From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36995) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1huEnB-00071c-P5 for guix-patches@gnu.org; Sun, 04 Aug 2019 07:35:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1huEnA-00046e-Mu for guix-patches@gnu.org; Sun, 04 Aug 2019 07:35:13 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51780) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1huEnA-000464-Iq for guix-patches@gnu.org; Sun, 04 Aug 2019 07:35:12 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1huEnA-0001kg-DQ for guix-patches@gnu.org; Sun, 04 Aug 2019 07:35:12 -0400 Subject: [bug#36920] [PATCH 06/43] gnu: Add rust-discard. Resent-Message-ID: From: Efraim Flashner Date: Sun, 4 Aug 2019 14:33:38 +0300 Message-Id: <5125381a6dca700e72a4decbf288146ce5896c15.1564918220.git.efraim@flashner.co.il> In-Reply-To: <20190804112613.GC2421@E2140> References: <20190804112613.GC2421@E2140> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36920@debbugs.gnu.org * gnu/packages/crates-io.scm (rust-discard): New variable. --- gnu/packages/crates-io.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7ba20a0f40..3f9bc1ffb7 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -112,6 +112,26 @@ depending on a large number of #[cfg] parameters. Structured like an (license (list license:asl2.0 license:expat)))) +(define-public rust-discard + (package + (name "rust-discard") + (version "1.0.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "discard" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1h67ni5bxvg95s91wgicily4ix7lcw7cq0a5gy9njrybaibhyb91")))) + (build-system cargo-build-system) + (home-page "https://github.com/Pauan/rust-discard") + (synopsis "Allow for intentionally leaking memory") + (description "There are situations where you need to intentionally leak some +memory but not other memory. This package provides a discard trait which allows +for intentionally leaking memory") + (license license:expat))) + (define-public rust-proc-macro2 (package (name "rust-proc-macro2") -- 2.22.0