From ef82e014740d05fb86f8b3c367d19a8cf31d39b5 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 21 Jul 2024 11:30:59 +0100 Subject: [PATCH] gnu: Add go-tomlv. * gnu/packages/golang-xyz.scm (go-tomlv): New variable. Change-Id: I2a95352302a0621dede1f67de766903482c610e2 --- gnu/packages/golang-xyz.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 320b44565b..9c1385e584 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5467,6 +5467,21 @@ tool.")))) "\nThis package provides an command line interface (CLI) tool.")))) +(define-public go-tomlv + (package + (inherit go-github-com-burntsushi-toml) + (name "go-tomlv") + (arguments + (list + #:install-source? #f + #:tests? #f ; no tests. + #:import-path "github.com/BurntSushi/toml/cmd/tomlv" + #:unpack-path "github.com/BurntSushi/toml")) + (description + (string-append (package-description go-github-com-burntsushi-toml) + " This package provides an command line interface (CLI) +tool.")))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar