diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2026-01-06 09:39:43 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 21:34:00 +0100 |
| commit | b70ba384d343b6ae5dd0bf43fd0251ce9ae97cc6 (patch) | |
| tree | 2623a202e3a7c16f3b607a59192c75694d8c8af4 | |
| parent | d29964a37608c03aa24d50a1ed85b6f7b47b6ed0 (diff) | |
gnu: Add go-github-com-tailscale-mkctr.
* gnu/packages/golang-web.scm (go-github-com-tailscale-mkctr): New
variable.
Relates-to: https://codeberg.org/guix/guix/pulls/5417
Change-Id: I589e44c28e7780a6b9af1525f84dd7af5af02dd9
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 76b37488d6..73e8532d5b 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -17963,6 +17963,34 @@ services. It's an alternative fork of @url{https://github.com/huin/goupnp}.") Commas and Comments (or \"human JSON\").") (license license:bsd-3))) +(define-public go-github-com-tailscale-mkctr + (package + (name "go-github-com-tailscale-mkctr") + (version "0.0.0-20250228050937-c75ea1476830") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tailscale/mkctr") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjmysd9azzqinf10p4i1c8228znpikkdy53zdgn57hayiqn722d")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/tailscale/mkctr")) + (propagated-inputs + (list go-github-com-google-go-containerregistry)) + (home-page "https://github.com/tailscale/mkctr") + (synopsis "Cross platform container builder for Go") + (description + "This package is a small Go binary which uses @code{GOOS= GOARCH= go +build} directly to compile Go binaries and then uses +@code{go-containerregistry} to create and publish the new containers based on +the desired platforms.") + (license license:bsd-3))) + (define-public go-github-com-tdewolff-minify-v2 (package (name "go-github-com-tdewolff-minify-v2") |
