mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: go-1.17: Simplify native-inputs.
* gnu/packages/golang.scm (go-1.17)[native-inputs]: Remove unnecessary quoting.
This commit is contained in:
parent
3b3bef3e4e
commit
7ccfec3065
1 changed files with 5 additions and 5 deletions
|
@ -798,11 +798,11 @@ (define-public go-1.17
|
|||
"README.md" "SECURITY.md"))))))))
|
||||
(inputs (alist-delete "gcc:lib" (package-inputs go-1.16)))
|
||||
(native-inputs
|
||||
`(,@(if (not (member (%current-system) (package-supported-systems go-1.4)))
|
||||
;; gccgo-10.4, 11.3 and lower has a bug which causes bootstrapping
|
||||
;; to fail. Use go-1.16 until we have a newer version available.
|
||||
(alist-replace "go" (list go-1.16) (package-native-inputs go-1.16))
|
||||
(package-native-inputs go-1.16))))))
|
||||
(if (not (member (%current-system) (package-supported-systems go-1.4)))
|
||||
;; gccgo-10.4, 11.3 and lower has a bug which causes bootstrapping
|
||||
;; to fail. Use go-1.16 until we have a newer version available.
|
||||
(alist-replace "go" (list go-1.16) (package-native-inputs go-1.16))
|
||||
(package-native-inputs go-1.16)))))
|
||||
|
||||
(define-public go go-1.14)
|
||||
|
||||
|
|
Loading…
Reference in a new issue