From cb8a8eb3752dd23b5f6e3749c0b05046d53c3646 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 16 Mar 2024 23:56:36 +0000 Subject: 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 --- gnu/packages/golang-compression.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'gnu/packages/golang-compression.scm') diff --git a/gnu/packages/golang-compression.scm b/gnu/packages/golang-compression.scm index 7a8f2af178..a1ad00f588 100644 --- a/gnu/packages/golang-compression.scm +++ b/gnu/packages/golang-compression.scm @@ -198,18 +198,22 @@ time, as otherwise the internal gzip library will likely be faster.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ulikunitz/xz.git") + (url "https://github.com/ulikunitz/xz") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1hbs3x7s7d5ch6ipaqi265w0fwpijs0j19xdbhbjjsyr4khxbqd0")))) (build-system go-build-system) (arguments - `(#:import-path "github.com/ulikunitz/xz")) + (list + #:import-path "github.com/ulikunitz/xz")) (home-page "https://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.") + (description + "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))) ;;; -- cgit v1.2.3 ue=''/>
path: root/.dir-locals.el
AgeCommit message (Expand)Author
2019-11-29ui: Factorize 'with-profile-lock'....Ludovic Courtès
2019-11-19pull: Acquire a lock for the target profile....Ludovic Courtès
2019-09-23git: Add 'commit-difference'....Ludovic Courtès
2019-06-05syscalls: Add 'with-file-lock' macro....Ludovic Courtès
2019-05-27publish: Add support for lzip....Ludovic Courtès
2019-03-07database: Make 'register-items' transactional....Caleb Ristvedt