me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/golang.scm (go-github.com-ulikunitz-xz): New variable.
master
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
1 changed files with 22 additions and 0 deletions

View File

@ -6041,3 +6041,25 @@ JSON data to the machine.")
systems can import this package to enable running programs as services without systems can import this package to enable running programs as services without
modifying them.") modifying them.")
(license license:zlib))) (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)))