mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -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"))))))))
|
"README.md" "SECURITY.md"))))))))
|
||||||
(inputs (alist-delete "gcc:lib" (package-inputs go-1.16)))
|
(inputs (alist-delete "gcc:lib" (package-inputs go-1.16)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(,@(if (not (member (%current-system) (package-supported-systems go-1.4)))
|
(if (not (member (%current-system) (package-supported-systems go-1.4)))
|
||||||
;; gccgo-10.4, 11.3 and lower has a bug which causes bootstrapping
|
;; 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.
|
;; 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))
|
(alist-replace "go" (list go-1.16) (package-native-inputs go-1.16))
|
||||||
(package-native-inputs go-1.16))))))
|
(package-native-inputs go-1.16)))))
|
||||||
|
|
||||||
(define-public go go-1.14)
|
(define-public go go-1.14)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue