gnu: go-1.17: Simplify native-inputs.

* gnu/packages/golang.scm (go-1.17)[native-inputs]: Remove unnecessary
quoting.
This commit is contained in:
Efraim Flashner 2021-12-21 18:20:38 +02:00
parent 3b3bef3e4e
commit 7ccfec3065
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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)