guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: address@hidden: Limit supported systems.


From: Efraim Flashner
Subject: 01/02: gnu: address@hidden: Limit supported systems.
Date: Wed, 25 Oct 2017 12:07:20 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit dda785f66081871501236722f68c8eaa31103186
Author: Efraim Flashner <address@hidden>
Date:   Wed Oct 25 17:40:33 2017 +0300

    gnu: address@hidden: Limit supported systems.
    
    * gnu/packages/golang.scm (address@hidden)[supported-systems]: New field,
    Limit supported systems to x86_64-linux, i686-linux and armhf-linux.
    (address@hidden)[supported-systems]: New field.
---
 gnu/packages/golang.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b1967b3..f97f6f1 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 <address@hidden>
+;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016 Matthew Jordan <address@hidden>
 ;;; Copyright © 2016 Andy Wingo <address@hidden>
 ;;; Copyright © 2016 Ludovic Courtès <address@hidden>
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]