gnu: go-ifacemaker: Impvoe package.

* gnu/packages/golang-xyz.scm (go-ifacemaker)[arguments]: Substitute
keyword arguments instead of overwriting them.
[native-inputs]: Inherit.
[propagated-inputs]: Drop all.
[inputs]: Drop all.
[description]: Fix it.

Change-Id: Ib53b8643597d9b7b817282fdf2e0a90b6e87915b
This commit is contained in:
Sharlatan Hellseher 2025-09-11 15:25:55 +01:00
parent 240054733c
commit 7f1922891e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -23901,12 +23901,19 @@ Jsonnet C++implementation.")
(package/inherit go-github-com-vburenin-ifacemaker
(name "go-ifacemaker")
(arguments
(list #:install-source? #f
#:tests? #f
#:import-path "github.com/vburenin/ifacemaker"))
(substitute-keyword-arguments
(package-arguments go-github-com-vburenin-ifacemaker)
((#:tests? _ #t) #f)
((#:install-source? _ #t) #f)
((#:skip-build? _ #t) #f)))
(native-inputs
(package-propagated-inputs go-github-com-vburenin-ifacemaker))
(propagated-inputs '())
(inputs '())
(description
(string-append (package-description go-github-com-vburenin-ifacemaker)
" This package provides a command line interface (CLI) tool."))))
(string-append
(package-description go-github-com-vburenin-ifacemaker)
"\nThis package provides a command line interface (CLI) tool."))))
(define-public go-md2man
(package/inherit go-github-com-go-md2man