~ruther/guix-local

b72e689dd38f8a63d1f3ad2f0049fda5a413a779 — Sharlatan Hellseher 7 months ago 34a6390
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
1 files changed, 11 insertions(+), 7 deletions(-)

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