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:
Sharlatan Hellseher 2025-09-07 15:31:34 +01:00
parent 34a63903a7
commit b72e689dd3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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