mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-tomlv: Switch to package/inherit.
* gnu/packages/golang-xyz.scm (go-tomlv): Switch to package/inherit. [arguments]: Substitute keyword arguments instead of overwriting them. [native-inputs]: Inherit. [propagated-inputs]: Drop all. [inputs]: Drop all. [description]: Fix it. Change-Id: I6545c54440f2d24bd95c1fdb659ae9b4cae82d92
This commit is contained in:
parent
7b871ae9ce
commit
73969883e8
1 changed files with 14 additions and 10 deletions
|
@ -23860,19 +23860,23 @@ tool."))))
|
||||||
tools."))))
|
tools."))))
|
||||||
|
|
||||||
(define-public go-tomlv
|
(define-public go-tomlv
|
||||||
(package
|
(package/inherit go-github-com-burntsushi-toml
|
||||||
(inherit go-github-com-burntsushi-toml)
|
|
||||||
(name "go-tomlv")
|
(name "go-tomlv")
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(substitute-keyword-arguments
|
||||||
#:install-source? #f
|
(package-arguments go-github-com-burntsushi-toml)
|
||||||
#:tests? #f ; no tests.
|
((#:tests? _ #t) #f)
|
||||||
#:import-path "github.com/BurntSushi/toml/cmd/tomlv"
|
((#:install-source? _ #t) #f)
|
||||||
#:unpack-path "github.com/BurntSushi/toml"))
|
((#:import-path "github.com/BurntSushi/toml")
|
||||||
|
"github.com/BurntSushi/toml/cmd/tomlv")
|
||||||
|
((#:unpack-path _ "") "github.com/BurntSushi/toml")))
|
||||||
|
(native-inputs (package-propagated-inputs go-github-com-burntsushi-toml))
|
||||||
|
(propagated-inputs '())
|
||||||
|
(inputs '())
|
||||||
(description
|
(description
|
||||||
(string-append (package-description go-github-com-burntsushi-toml)
|
(string-append
|
||||||
" This package provides an command line interface (CLI)
|
(package-description go-github-com-burntsushi-toml)
|
||||||
tool."))))
|
"\nThis package provides a command line interface (CLI) tool."))))
|
||||||
|
|
||||||
(define-public go-ulid
|
(define-public go-ulid
|
||||||
(package/inherit go-github-com-oklog-ulid-v2
|
(package/inherit go-github-com-oklog-ulid-v2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue