~ruther/guix-local

7f1922891ebdc897e07c92134708ea55f884695e — Sharlatan Hellseher 7 months ago 2400547
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
1 files changed, 12 insertions(+), 5 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +12 -5
@@ 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