From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 1/5] gnu: Add avr-binutils. Date: Thu, 14 Apr 2016 09:17:00 -0400 Message-ID: <1460639824-9976-2-git-send-email-dthompson2@worcester.edu> References: <1460639824-9976-1-git-send-email-dthompson2@worcester.edu> 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]:44240) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqh90-0000Rc-99 for guix-devel@gnu.org; Thu, 14 Apr 2016 09:17:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aqh8w-0001rd-Ke for guix-devel@gnu.org; Thu, 14 Apr 2016 09:17:14 -0400 Received: from mail-qg0-x22c.google.com ([2607:f8b0:400d:c04::22c]:33645) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqh8w-0001rY-GS for guix-devel@gnu.org; Thu, 14 Apr 2016 09:17:10 -0400 Received: by mail-qg0-x22c.google.com with SMTP id j35so62397966qge.0 for ; Thu, 14 Apr 2016 06:17:10 -0700 (PDT) In-Reply-To: <1460639824-9976-1-git-send-email-dthompson2@worcester.edu> 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/avr.scm (avr-binutils): New variable. --- gnu/packages/avr.scm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gnu/packages/avr.scm b/gnu/packages/avr.scm index d59816b..b30c64e 100644 --- a/gnu/packages/avr.scm +++ b/gnu/packages/avr.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014 Manolis Fragkiskos Ragkousis +;;; Copyright © 2014, 2016 Manolis Fragkiskos Ragkousis ;;; Copyright © 2015 Ricardo Wurmus +;;; Copyright © 2016 David Thompson ;;; ;;; This file is part of GNU Guix. ;;; @@ -27,6 +28,14 @@ #:use-module (gnu packages vim) #:use-module (gnu packages zip)) +(define-public avr-binutils + (package + (inherit (cross-binutils "avr")) + (name "avr-binutils") + (arguments + '(#:configure-flags '("--target=avr" + "--disable-nls"))))) + (define-public avr-libc (package (name "avr-libc") -- 2.7.3