diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-06 09:53:46 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 14:07:29 +0100 |
| commit | c2564c008dcdc2e9c60e5af87265147cb505088b (patch) | |
| tree | 06f6f4be7f1ef7144f91fab6e8ef66a83c84e391 | |
| parent | 4a16fbdbbd9a5d7bd263de7b7aeaf5d2de4596f3 (diff) | |
gnu: Add go-ply.
* gnu/packages/golang-xyz.scm (go-ply): New variable.
Change-Id: I1ec790b6b3aa2469a15b6fea302e8c6faa6001a1
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c9d33d59637..38127bab689 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") |
