diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2026-01-06 10:10:43 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 21:33:59 +0100 |
| commit | f69c21d6e1f9d2277a02f2b7e2974888193ea717 (patch) | |
| tree | f85d20cb18729e4d728cb299103d8a48f7d404fd | |
| parent | 6b46daa8d01c6636f6bd147a59f65592908b36c1 (diff) | |
gnu: Add go-github-com-kodeworks-golang-image-ico.
* gnu/packages/golang-xyz.scm
(go-github-com-kodeworks-golang-image-ico): New variable.
Relates-to: https://codeberg.org/guix/guix/pulls/5417
Change-Id: I0fe7dc868aaf43b3a11eaccfe2ebc2c3098eed47
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 86522f1677..c825548b39 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16525,6 +16525,29 @@ structure. It can also produce a much more verbose, one-item-per-line representation suitable for computing diffs.") (license license:asl2.0))) +(define-public go-github-com-kodeworks-golang-image-ico + (package + (name "go-github-com-kodeworks-golang-image-ico") + (version "0.0.0-20141118225523-73f0f4cfade9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Kodeworks/golang-image-ico") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zfcvpf6pdqismq9j8nvismln1dbz2i22d7c00a2ygjxldbmnd3k")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/Kodeworks/golang-image-ico")) + (home-page "https://github.com/Kodeworks/golang-image-ico") + (synopsis "Golang support for Windows .ico file format") + (description + "This package provides Golang support for Windows' @code{.ico} file format.") + (license license:bsd-3))) + (define-public go-github-com-labstack-gommon (package (name "go-github-com-labstack-gommon") |
