gnu: go-golang-org-x-sys-unix: Update to 0.0.0-1.8380141.

* gnu/packages/syncthing.scm (go-golang-org-x-sys-unix): Update to
0.0.0-1.8380141.
[arguments]: Adjust the tests to the build environment.
This commit is contained in:
Leo Famulari 2017-12-30 16:22:49 -05:00
parent 27fbcae6d5
commit 2b4588609b
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 12 additions and 4 deletions

View File

@ -1402,8 +1402,8 @@ for a variety of protocols to proxy network data.")
(license bsd-3)))) (license bsd-3))))
(define-public go-golang-org-x-sys-unix (define-public go-golang-org-x-sys-unix
(let ((commit "f3918c30c5c2cb527c0b071a27c35120a6c0719a") (let ((commit "83801418e1b59fb1880e363299581ee543af32ca")
(revision "0")) (revision "1"))
(package (package
(name "go-golang-org-x-sys-unix") (name "go-golang-org-x-sys-unix")
(version (git-version "0.0.0" revision commit)) (version (git-version "0.0.0" revision commit))
@ -1415,11 +1415,19 @@ for a variety of protocols to proxy network data.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"02967mw0nq7hp39bcf8rdbid4jgz2fn6hd1x03mmavvca03scxbh")))) "0ilykaanvnzb27d42kmbr4i37hcn7hgqbx98z945gy63aa8dskji"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
`(#:import-path "golang.org/x/sys/unix" `(#:import-path "golang.org/x/sys/unix"
#:unpack-path "golang.org/x/sys")) #:unpack-path "golang.org/x/sys"
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-tests
(lambda _
(pk (getcwd))
(substitute* "src/golang.org/x/sys/unix/syscall_unix_test.go"
(("/usr/bin") "/tmp"))
#t)))))
(synopsis "Go support for low-level system interaction") (synopsis "Go support for low-level system interaction")
(description "This package provides @code{unix}, which offers Go support (description "This package provides @code{unix}, which offers Go support
for low-level interaction with the operating system.") for low-level interaction with the operating system.")