mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: go-github-com-ulikunitz-xz: Refresh package style.
* gnu/packages/golang-compression.scm (go-github-com-ulikunitz-xz) [source]: Remove trailing ".git" from URL. [description]: Add more info based on project's README. Change-Id: I8590ea9099c45a7b636281c95f4fde5952de9410
This commit is contained in:
parent
48ec6188d7
commit
cb8a8eb375
1 changed files with 8 additions and 4 deletions
|
@ -198,18 +198,22 @@ (define-public go-github-com-ulikunitz-xz
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/ulikunitz/xz.git")
|
(url "https://github.com/ulikunitz/xz")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1hbs3x7s7d5ch6ipaqi265w0fwpijs0j19xdbhbjjsyr4khxbqd0"))))
|
(base32 "1hbs3x7s7d5ch6ipaqi265w0fwpijs0j19xdbhbjjsyr4khxbqd0"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "github.com/ulikunitz/xz"))
|
(list
|
||||||
|
#:import-path "github.com/ulikunitz/xz"))
|
||||||
(home-page "https://github.com/ulikunitz/xz")
|
(home-page "https://github.com/ulikunitz/xz")
|
||||||
(synopsis "Read and write xz compressed streams in Go")
|
(synopsis "Read and write xz compressed streams in Go")
|
||||||
(description "This package provides a library to read and write xz
|
(description
|
||||||
compressed streams in Go.")
|
"This package provides a support of reading and writing of xz
|
||||||
|
compressed streams. It includes also a gxz command for compressing and
|
||||||
|
decompressing data. The package is completely written in Go and doesn't have
|
||||||
|
any dependency on any C code.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
|
Loading…
Reference in a new issue