sharlatan pushed a commit to branch go-team
in repository guix.

commit c7503bab81d8a42fa2fe57f247ca02b44e1220ed
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Fri Feb 21 22:50:42 2025 +0000

    gnu: go-github-com-mufti1-interconv: Improve package style.
    
    * gnu/packages/golang.scm (go-github-com-mufti1-interconv) [arguments]
    <skip-build?>: No go files in project's root.
    <unpack-path>: Remove it.
    <import-path>: Adjust accordingly to expected go.mod path.
    [description]: Add a list of supported types.
    
    Change-Id: Id0c63a4d36f313bac72e231c68db0e64c07e7297
---
 gnu/packages/golang.scm | 27 ++++++++++++++++++++++++---
 1 file changed, 24 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b5cc0e9152..d149ebb0d2 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1226,11 +1226,32 @@ networks where it would otherwise be blocked or heavily 
throttled.")
           (base32 "13f5pvr74afa28pbpmgvjzjx68vv5zmrwlvxp7hr5bl5625zlxmy"))))
       (build-system go-build-system)
       (arguments
-       `(#:unpack-path "github.com/mufti1/interconv"
-         #:import-path "github.com/mufti1/interconv/package"))
+       (list
+        #:skip-build? #t
+        #:import-path "github.com/mufti1/interconv"))
       (home-page "https://github.com/mufti1/interconv";)
       (synopsis "Data type converter")
-      (description "InterConv converts interfaces into any data type.")
+      (description
+       "InterConv converts interfaces into any data type.
+
+Data type that can be converted:
+@itemize
+@item Int
+@item Int8
+@item Int32
+@item Int16
+@item Int64
+@item Float32
+@item Float64
+@item Boolean
+@item String
+@item Uint
+@item Uint8
+@item Uint16
+@item Uint32
+@item Uint64
+@item Uintptr
+@end itemize")
       (license license:expat))))
 
 (define-public go-github-com-operatorfoundation-monolith-go

Reply via email to