guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 0029ed2b0e9cd6dae4de641c75eb2ef1be79453b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 6 09:53:46 2026 +0000
gnu: Add go-ply.
* gnu/packages/golang-xyz.scm (go-ply): New variable.
Change-Id: I1ec790b6b3aa2469a15b6fea302e8c6faa6001a1
---
gnu/packages/golang-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index c9d33d5963..38127bab68 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -31829,6 +31829,24 @@ tool."))))
(propagated-inputs '())
(inputs '())))
+(define-public go-ply
+ (package/inherit go-howett-net-plist
+ (name "go-ply")
+ (arguments
+ (substitute-keyword-arguments
+ (package-arguments go-howett-net-plist)
+ ((#:tests? _ #t) #f)
+ ((#:install-source? _ #t) #f)
+ ((#:skip-build? _ #t) #f)
+ ((#:import-path _) "howett.net/plist/cmd/ply")
+ ((#:unpack-path _ "") "howett.net/plist")))
+ (native-inputs
+ (append
+ (package-native-inputs go-howett-net-plist)
+ (package-propagated-inputs go-howett-net-plist)))
+ (propagated-inputs '())
+ (inputs '())))
+
(define-public go-toml
(package/inherit go-github-com-pelletier-go-toml-v2
(name "go-toml")