diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index cedfabe5bf..7dbe27c2ee 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016, 2017, 2018 Efraim Flashner <[email protected]> +;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <[email protected]> ;;; Copyright © 2016 Matthew Jordan <[email protected]> ;;; Copyright © 2016 Andy Wingo <[email protected]> ;;; Copyright © 2016 Ludovic Courtès <[email protected]> @@ -399,6 +399,10 @@ in the style of communicating sequential processes (@dfn{CSP}).") #t))))))) (native-inputs `(("go" ,go-1.4) + ,@(match (%current-system) + ((or "armhf-linux" "aarch64-linux") + `(("gold" ,binutils-gold))) + (_ `())) ,@(package-native-inputs go-1.4))) (supported-systems %supported-systems))) |