diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2016-04-15 09:48:26 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-05-30 13:45:21 -0400 |
commit | a17eea4ba41fc0ab234db618770727da3432be8a (patch) | |
tree | b069a8d3f88480c877464fe54b64d9e57b149cd7 /gnu/packages/avr.scm | |
parent | 09b05fc7e9bdcdcfd2690777e0cd94c2ecd3afab (diff) | |
download | guix-a17eea4ba41fc0ab234db618770727da3432be8a.tar.gz |
gnu: Add avr-gcc-5.
* gnu/packages/avr.scm (avr-gcc-5): New variable.
Diffstat (limited to 'gnu/packages/avr.scm')
-rw-r--r-- | gnu/packages/avr.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/avr.scm b/gnu/packages/avr.scm index fd51f074f2..00c4e47ebe 100644 --- a/gnu/packages/avr.scm +++ b/gnu/packages/avr.scm @@ -26,6 +26,7 @@ #:use-module (guix build-system gnu) #:use-module (gnu packages) #:use-module (gnu packages cross-base) + #:use-module (gnu packages gcc) #:use-module (gnu packages vim) #:use-module (gnu packages zip)) @@ -63,6 +64,12 @@ (variable "CROSS_LIBRARY_PATH") (files '("avr/lib")))))))) +(define-public avr-gcc-5 + (package + (inherit avr-gcc-4.9) + (version (package-version gcc-5)) + (source (package-source gcc-5)))) + (define-public avr-libc (package (name "avr-libc") |