me
/
guix
Archived
1
0
Fork 0

gnu: go-golang-org-x-sys: Fix indentation.

* gnu/packages/golang-build.scm (go-golang-org-x-sys): Re indent.

Change-Id: I63f95e9fb8d6d633fbb0642100c60d5df9121730
master
Sharlatan Hellseher 2024-06-20 10:10:25 +01:00
parent fc9eb91b0c
commit 0540c0ccb2
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 30 additions and 30 deletions

View File

@ -307,37 +307,37 @@ cancelation for groups of goroutines working on subtasks of a common task
(license license:bsd-3)))
(define-public go-golang-org-x-sys
(package
(name "go-golang-org-x-sys")
(version "0.21.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://go.googlesource.com/sys")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "000fcyi863sbmamdn3cwfv3s3z9ls5l34xnjavcbgjs591ghki8y"))))
(build-system go-build-system)
(arguments
(list
#:import-path "golang.org/x/sys"
#:phases
#~(modify-phases %standard-phases
;; XXX: Workaround for go-build-system's lack of Go modules
;; support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(home-page "https://go.googlesource.com/sys")
(synopsis "Go support for low-level system interaction")
(description "This package provides supplemental libraries offering Go
(package
(name "go-golang-org-x-sys")
(version "0.21.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://go.googlesource.com/sys")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "000fcyi863sbmamdn3cwfv3s3z9ls5l34xnjavcbgjs591ghki8y"))))
(build-system go-build-system)
(arguments
(list
#:import-path "golang.org/x/sys"
#:phases
#~(modify-phases %standard-phases
;; XXX: Workaround for go-build-system's lack of Go modules
;; support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(home-page "https://go.googlesource.com/sys")
(synopsis "Go support for low-level system interaction")
(description "This package provides supplemental libraries offering Go
support for low-level interaction with the operating system.")
(license license:bsd-3)))
(license license:bsd-3)))
(define-public go-golang-org-x-term
(package