gnu: Add go-github.com-ulikunitz-xz.

* gnu/packages/golang.scm (go-github.com-ulikunitz-xz): New variable.
This commit is contained in:
Danny Milosavljevic 2020-11-30 22:25:54 +01:00
parent b5ed51bdf9
commit d6e40862cc
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -6041,3 +6041,25 @@ (define-public go-github-com-kardianos-minwinsvc
systems can import this package to enable running programs as services without
modifying them.")
(license license:zlib)))
(define-public go-github.com-ulikunitz-xz
(package
(name "go-github.com-ulikunitz-xz")
(version "0.5.8")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ulikunitz/xz.git")
(commit (string-append "v" version))))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1xnsymi5fmmm734bi4c6z57p5cvnyxlpi29yxs4v21w5k763aypd"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/ulikunitz/xz"))
(synopsis "Read and write xz compressed streams in Go")
(description "This package provides a library to read and write xz
compressed streams in Go.")
(home-page "https://github.com/ulikunitz/xz")
(license license:bsd-3)))