From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 09/12] gnu: Add rust-bootstrap-x86_64-1.12.0. Date: Thu, 22 Sep 2016 15:19:00 +0200 Message-ID: <20160922131903.1606-9-david@craven.ch> References: <20160922131903.1606-1-david@craven.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43332) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bn3uk-0004W6-RO for guix-devel@gnu.org; Thu, 22 Sep 2016 09:20:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bn3uT-0001bO-IY for guix-devel@gnu.org; Thu, 22 Sep 2016 09:19:46 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:59195) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bn3uS-0001XC-3x for guix-devel@gnu.org; Thu, 22 Sep 2016 09:19:29 -0400 In-Reply-To: <20160922131903.1606-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/rust.scm (rust-bootstrap-x86_64-1.12.0): New variable. --- gnu/packages/rust.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 gnu/packages/rust.scm diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm new file mode 100644 index 0000000..1831aa7 --- /dev/null +++ b/gnu/packages/rust.scm @@ -0,0 +1,30 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2016 Eric Le Bihan +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages rust) + #:use-module (guix download)) + +(define rust-bootstrap-x86_64-1.12.0 + (origin + (method url-fetch) + (uri (string-append + "https://static.rust-lang.org/dist/" + "rust-beta-x86_64-unknown-linux-gnu.tar.gz")) + (sha256 + (base32 + "1is1k93zarvxx0h7b57ga8vr9gj34b36l9la6zkph41x33gfgpvl")))) -- 2.9.0