gnu: go-github-com-go-md2man: Package executable separately.

* gnu/packages/golang-xyz.scm (go-github-com-go-md2man) [arguments]
<skip-build?>: Preserve the package for source only inputs.
(go-md2man): New variable.

* gnu/packages/check.scm (checkmake): [native-inputs]: Remove
go-github-com-go-md2man; add go-md2man.
* gnu/packages/containers.scm (buildah, podman): Likewise.
* gnu/packages/hardware.scm (brillo): Likewise.
* gnu/packages/printers.scm (ipp-usb): Likewise.
* gnu/packages/virtualization.scm (runc, skopeo): Likewise.

Change-Id: I753364633786574c603a978da75a57090d706b27
This commit is contained in:
Sharlatan Hellseher 2025-02-26 21:28:55 +00:00
parent 26325888c1
commit 907b726b86
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
6 changed files with 30 additions and 14 deletions

View file

@ -3968,6 +3968,7 @@ it effectively reuses the JSON struct tags as well as the custom JSON methods
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "github.com/cpuguy83/go-md2man"))
(propagated-inputs
(list go-github-com-russross-blackfriday-v2))
@ -19498,6 +19499,24 @@ Jsonnet C++implementation.")
(string-append (package-description go-github-com-vburenin-ifacemaker)
" This package provides a command line interface (CLI) tool."))))
(define-public go-md2man
(package/inherit go-github-com-go-md2man
(name "go-md2man")
(arguments
(substitute-keyword-arguments
(package-arguments go-github-com-go-md2man)
((#:tests? _ #t) #f)
((#:install-source? _ #t) #f)
((#:skip-build? _ #t) #f)))
(native-inputs
(package-propagated-inputs go-github-com-go-md2man))
(propagated-inputs '())
(inputs '())
(description
(string-append (package-description go-github-com-go-md2man)
"\nThis package provides a command line interface (CLI)
tool."))))
(define-public go-msgio
(package
(inherit go-github-com-libp2p-go-msgio)