mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: misspell: Switch to package/inherit.
* gnu/packages/golang-xyz.scm (misspell): Switch to package/inherit. [arguments]: Substitute keyword arguments instead of overwriting them. [native-inputs]: Inherit. [propagated-inputs]: Drop all. [inputs]: Drop all. Change-Id: I5ed408004c0bc122c00f0239ff71716641f4221c
This commit is contained in:
parent
34a63903a7
commit
b72e689dd3
1 changed files with 11 additions and 7 deletions
|
@ -23902,15 +23902,19 @@ tool."))))
|
|||
(inputs '())))
|
||||
|
||||
(define-public misspell
|
||||
(package
|
||||
(inherit go-github-com-client9-misspell)
|
||||
(package/inherit go-github-com-client9-misspell
|
||||
(name "misspell")
|
||||
(arguments
|
||||
(list
|
||||
#:install-source? #t
|
||||
#:tests? #f
|
||||
#:import-path "github.com/client9/misspell/cmd/misspell"
|
||||
#:unpack-path "github.com/client9/misspell"))))
|
||||
(substitute-keyword-arguments
|
||||
(package-arguments go-github-com-client9-misspell)
|
||||
((#:tests? _ #t) #f)
|
||||
((#:install-source? _ #t) #f)
|
||||
((#:import-path "github.com/client9/misspell")
|
||||
"github.com/client9/misspell/cmd/misspell")
|
||||
((#:unpack-path _ "") "github.com/client9/misspell")))
|
||||
(native-inputs (package-propagated-inputs go-github-com-client9-misspell))
|
||||
(propagated-inputs '())
|
||||
(inputs '())))
|
||||
|
||||
(define-public gops
|
||||
(package/inherit go-github-com-google-gops
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue