mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: go-golang-org-x-sys: Update to 0.4.0.
* gnu/packages/golang.scm (go-golang-org-x-sys): Update to 0.4.0. (go-golang-org-x-sys): Switch to gexp. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
d7673b49c0
commit
87eb8473c1
1 changed files with 12 additions and 10 deletions
|
@ -3218,11 +3218,11 @@ (define-public go-golang-org-x-sync
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
(define-public go-golang-org-x-sys
|
(define-public go-golang-org-x-sys
|
||||||
(let ((commit "ed5796bab16455f104b6a384d51b7f9990cb9806")
|
(let ((commit "b60007cc4e6f966b1c542e343d026d06723e5653")
|
||||||
(revision "8"))
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-sys")
|
(name "go-golang-org-x-sys")
|
||||||
(version (git-version "0.0.0" revision commit))
|
(version (git-version "0.4.0" revision commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -3231,15 +3231,17 @@ (define-public go-golang-org-x-sys
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"081vs5bg91mwg5bdmlcvy2qyrvg766aicj47smcwfk4bbh0nc0qa"))))
|
"0fr2d6fnpbqx6n89sg9lsinqkdaw49y068kqj2g0cxlhbh69hzii"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "golang.org/x/sys"
|
(list
|
||||||
;; Source-only package
|
#:import-path "golang.org/x/sys"
|
||||||
#:tests? #f
|
;; Source-only package
|
||||||
#:phases
|
#:tests? #f
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'build))))
|
#~(modify-phases %standard-phases
|
||||||
|
;; Source-only package
|
||||||
|
(delete 'build))))
|
||||||
(synopsis "Go support for low-level system interaction")
|
(synopsis "Go support for low-level system interaction")
|
||||||
(description "This package provides supplemental libraries offering Go
|
(description "This package provides supplemental libraries offering Go
|
||||||
support for low-level interaction with the operating system.")
|
support for low-level interaction with the operating system.")
|
||||||
|
|
Loading…
Reference in a new issue