diff options
author | David Thompson <[email protected]> | 2016-04-14 08:42:42 -0400 |
---|---|---|
committer | David Thompson <[email protected]> | 2016-05-30 13:45:21 -0400 |
commit | cdc5cfdc4a50c5fda9ec50bfd9477838b8013203 (patch) | |
tree | bb0539c6a903b03524a49be15c6c30443fa997e7 | |
parent | 983911d62731c42702526c9a049181a89cafb443 (diff) |
gnu: Add avr-binutils.
* gnu/packages/avr.scm (avr-binutils): New variable.
-rw-r--r-- | gnu/packages/avr.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/avr.scm b/gnu/packages/avr.scm index d59816b6b8..3276de765b 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 <[email protected]> +;;; Copyright © 2014, 2016 Manolis Fragkiskos Ragkousis <[email protected]> ;;; Copyright © 2015 Ricardo Wurmus <[email protected]> +;;; Copyright © 2016 David Thompson <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -27,6 +28,11 @@ #:use-module (gnu packages vim) #:use-module (gnu packages zip)) +(define-public avr-binutils + (package + (inherit (cross-binutils "avr")) + (name "avr-binutils"))) + (define-public avr-libc (package (name "avr-libc") |