diff options
author | Troy Figiel <troy@troyfigiel.com> | 2024-03-05 08:44:10 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-06 23:28:30 +0000 |
commit | dda217f25ac3358b19542deb616756859df7225a (patch) | |
tree | 5133842bd2503fa5a6b0078ef5aa29dda3438104 /gnu | |
parent | b75db99600db84e8c98e00034fb3c4f7675031b2 (diff) | |
download | guix-dda217f25ac3358b19542deb616756859df7225a.tar.gz guix-dda217f25ac3358b19542deb616756859df7225a.zip |
gnu: Add go-github-com-nwaples-rardecode-v2.
* gnu/packages/golang-compression.scm (go-github-com-nwaples-rardecode-v2): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-compression.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-compression.scm b/gnu/packages/golang-compression.scm index 77701db1a8..b999c063ee 100644 --- a/gnu/packages/golang-compression.scm +++ b/gnu/packages/golang-compression.scm @@ -140,6 +140,29 @@ library included in the stdlib, and supports GIF, TIFF and PDF.") (description "@code{compress} provides various compression algorithms.") (license license:bsd-3))) +(define-public go-github-com-nwaples-rardecode-v2 + (package + (name "go-github-com-nwaples-rardecode-v2") + (version "2.0.0-beta.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nwaples/rardecode") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1344mxfdgs5fps6mqxk6352arrfszi33kmq394rgmqpf4394f1y7")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/nwaples/rardecode")) + (home-page "https://github.com/nwaples/rardecode") + (synopsis "Reading RAR archives in Go") + (description + "This package provides a library for reading RAR archives with Golang.") + (license license:bsd-2))) + (define-public go-github-com-ulikunitz-xz (package (name "go-github-com-ulikunitz-xz") |