summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-28 23:09:56 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-28 23:16:42 +0100
commit9948413bb37a633dcf25f69110af557cf8f3d60e (patch)
tree37d1be967631c57534f5c212222c3f04c2ac2d62 /gnu
parente3e9413290b52186416e41874ff517e955e59c60 (diff)
gnu: Add go-github-com-u-root-gobusybox-src.
* gnu/packages/golang-xyz.scm (go-github-com-u-root-gobusybox-src): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm34
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 16473e4fc8c..03c333ccf01 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -29146,6 +29146,40 @@ Merkle tree} implementation in Golang.")
29146stopped.") 29146stopped.")
29147 (license license:expat))) 29147 (license license:expat)))
29148 29148
29149(define-public go-github-com-u-root-gobusybox-src
29150 (package
29151 (name "go-github-com-u-root-gobusybox-src")
29152 (version "0.3.0")
29153 (source
29154 (origin
29155 (method git-fetch)
29156 (uri (git-reference
29157 (url "https://github.com/u-root/gobusybox")
29158 (commit (go-version->git-ref version #:subdir "src"))))
29159 (file-name (git-file-name name version))
29160 (sha256
29161 (base32 "1jp4z7abxlqgvg8ig25m2l7my215r7hf1smqvw26qfaak6zc9xim"))))
29162 (build-system go-build-system)
29163 (arguments
29164 (list
29165 #:skip-build? #t
29166 #:import-path "github.com/u-root/gobusybox/src"
29167 #:unpack-path "github.com/u-root/gobusybox"
29168 #:test-flags #~(list "-skip" "TestResolve"))) ;needs GO111MODULE=on
29169 (propagated-inputs
29170 (list go-github-com-dustin-go-humanize
29171 go-github-com-hashicorp-go-version
29172 go-github-com-u-root-uio
29173 go-golang-org-x-exp
29174 go-golang-org-x-tools
29175 go-mvdan-cc-sh-v3))
29176 (home-page "https://github.com/u-root/gobusybox")
29177 (synopsis "Tools for compiling many Go commands into one binary")
29178 (description
29179 "This package provides a source module for tools compiling many Go
29180commands into one binary.")
29181 (license license:bsd-3)))
29182
29149(define-public go-github-com-u-root-u-root 29183(define-public go-github-com-u-root-u-root
29150 (package 29184 (package
29151 (name "go-github-com-u-root-u-root") 29185 (name "go-github-com-u-root-u-root")