diff options
author | Efraim Flashner <[email protected]> | 2017-10-25 17:40:33 +0300 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2017-10-25 19:07:10 +0300 |
commit | dda785f66081871501236722f68c8eaa31103186 (patch) | |
tree | 8aad92e7b6ac222eacd45ac08fcb02fba7449213 /gnu/packages | |
parent | c633b911cec5656c4a8054bc9276ec6cdc6be6cf (diff) |
gnu: [email protected]: Limit supported systems.
* gnu/packages/golang.scm ([email protected])[supported-systems]: New field,
Limit supported systems to x86_64-linux, i686-linux and armhf-linux.
([email protected])[supported-systems]: New field.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index b1967b3f1a..f97f6f1711 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016 Efraim Flashner <[email protected]> +;;; Copyright © 2016, 2017 Efraim Flashner <[email protected]> ;;; Copyright © 2016 Matthew Jordan <[email protected]> ;;; Copyright © 2016 Andy Wingo <[email protected]> ;;; Copyright © 2016 Ludovic Courtès <[email protected]> @@ -198,6 +198,7 @@ programming language. Designed primarily for systems programming, it is a compiled, statically typed language in the tradition of C and C++, with garbage collection, various safety features and in the style of communicating sequential processes (CSP) concurrent programming features added.") + (supported-systems '("x86_64-linux" "i686-linux" "armhf-linux")) (license license:bsd-3))) (define-public go-1.9 @@ -372,6 +373,7 @@ sequential processes (CSP) concurrent programming features added.") (copy-recursively "../" output)))))))) (native-inputs `(("go" ,go-1.4) - ,@(package-native-inputs go-1.4))))) + ,@(package-native-inputs go-1.4))) + (supported-systems %supported-systems))) (define-public go go-1.9) |