gnu: Add go-github-com-alcortesm-tgz.

* gnu/packages/golang.scm (go-github-com-alcortesm-tgz): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-09 12:38:52 +03:00
parent 507da2fef8
commit fd2a3046a8
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -5215,3 +5215,42 @@ (define-public go-github-com-xanzy-ssh-agent
ssh-agent that uses UNIX sockets, and one could implement an alternative
ssh-agent process using the sample server. ")
(license license:asl2.0)))
(define-public go-github-com-alcortesm-tgz
(let ((commit "9c5fe88206d7765837fed3732a42ef88fc51f1a1")
(revision "1"))
(package
(name "go-github-com-alcortesm-tgz")
(version (git-version "0.0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alcortesm/tgz")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"04dcwnz2c2i4wbq2vx3g2wrdgqpncr2r1h6p1k08rdwk4bq1h8c5"))
(modules '((guix build utils)))
(snippet
'(begin
(substitute* "tgz_test.go"
;; Fix format error
(("t.Fatalf\\(\"%s: unexpected error extracting: %s\", err\\)")
"t.Fatalf(\"%s: unexpected error extracting: %s\", com, err)"))
#t))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/alcortesm/tgz"
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'make-git-checkout-writable
(lambda* (#:key outputs #:allow-other-keys)
(for-each make-file-writable (find-files "."))
(for-each make-file-writable (find-files (assoc-ref outputs "out")))
#t)))))
(home-page "https://github.com/alcortesm/tgz/")
(synopsis "Go library to extract tgz files to temporal directories")
(description "This package provides a Go library to extract tgz files to
temporal directories.")
(license license:expat))))