mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
240054733c
commit
7f1922891e
1 changed files with 12 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue