mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add go-github-com-hhrutter-lzw.
* gnu/packages/golang-compression.scm (go-github-com-hhrutter-lzw): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
fbc7a0efa7
commit
1583fe7e24
1 changed files with 25 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2022 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2022 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
|
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -84,6 +85,30 @@ (define-public go-github-com-golang-snappy
|
||||||
compression format.")
|
compression format.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-hhrutter-lzw
|
||||||
|
(package
|
||||||
|
(name "go-github-com-hhrutter-lzw")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/hhrutter/lzw")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1n13qhf8ih08jzm10wprdvjy56ylmy6fhakyqrddm6nszf397wch"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/hhrutter/lzw"))
|
||||||
|
(home-page "https://github.com/hhrutter/lzw")
|
||||||
|
(synopsis "Extended version of @code{compress/lzw}")
|
||||||
|
(description
|
||||||
|
"This package provides an enhanced version of the @code{compress/lzw}
|
||||||
|
library included in the stdlib, and supports GIF, TIFF and PDF.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-klauspost-compress
|
(define-public go-github-com-klauspost-compress
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-klauspost-compress")
|
(name "go-github-com-klauspost-compress")
|
||||||
|
|
Loading…
Reference in a new issue