mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
26325888c1
commit
907b726b86
6 changed files with 30 additions and 14 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue