guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b72e689dd38f8a63d1f3ad2f0049fda5a413a779
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 7 15:31:34 2025 +0100

    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
---
 gnu/packages/golang-xyz.scm | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 030a1cf3dd..8b215a04dc 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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

Reply via email to