diff options
author | Troy Figiel <troy@troyfigiel.com> | 2024-03-03 17:54:48 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-06 23:28:29 +0000 |
commit | da582bcf50bfbd643e6625cd724b5eb3dfc326a1 (patch) | |
tree | 5551c6cc42841f62a1f61bb54afbf80bcba64418 /gnu/packages | |
parent | 1583fe7e24b6e1a48f7525b338e96cecd5813a3a (diff) | |
download | guix-da582bcf50bfbd643e6625cd724b5eb3dfc326a1.tar guix-da582bcf50bfbd643e6625cd724b5eb3dfc326a1.tar.gz |
gnu: Add go-github-com-hhrutter-tiff.
* gnu/packages/golang-xyz.scm (go-github-com-hhrutter-tiff): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 6cbdaeee13..fe0a06270e 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -742,6 +742,36 @@ Differentiation between text and binary files}. @end itemize") (license license:expat))) +(define-public go-github-com-hhrutter-tiff + (package + (name "go-github-com-hhrutter-tiff") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hhrutter/tiff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09fzgvxwkd34izbfd26ln8vdbhc4j9gxpar3s7h9h125psrjvg0k")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/hhrutter/tiff")) + (propagated-inputs (list go-golang-org-x-image go-github-com-hhrutter-lzw)) + (home-page "https://github.com/hhrutter/tiff") + (synopsis "Extended version of @code{golang.org/x/image/tiff}") + (description "This package is an enhanced version of the +@code{golang.org/x/image/tiff} library featuring: + +@itemize +@item Read support for CCITT Group3/4 compressed images. +@item Read/write support for LZW compressed images. +@item Read/write support for the CMYK color model. +@end itemize") + (license license:bsd-3))) + (define-public go-github-com-jinzhu-copier (package (name "go-github-com-jinzhu-copier") |