summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-07-21 11:30:59 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-07-25 21:01:00 +0100
commitef82e014740d05fb86f8b3c367d19a8cf31d39b5 (patch)
tree69b97d21b4b81d3b387c673fc489b80b54bec561 /gnu/packages
parent1664dfa7b78f9d8e6cf891399b3b90350cc558b1 (diff)
gnu: Add go-tomlv.
* gnu/packages/golang-xyz.scm (go-tomlv): New variable. Change-Id: I2a95352302a0621dede1f67de766903482c610e2
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-xyz.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 320b44565bf..9c1385e5846 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5467,6 +5467,21 @@ tool."))))
5467 "\nThis package provides an command line interface (CLI) 5467 "\nThis package provides an command line interface (CLI)
5468tool.")))) 5468tool."))))
5469 5469
5470(define-public go-tomlv
5471 (package
5472 (inherit go-github-com-burntsushi-toml)
5473 (name "go-tomlv")
5474 (arguments
5475 (list
5476 #:install-source? #f
5477 #:tests? #f ; no tests.
5478 #:import-path "github.com/BurntSushi/toml/cmd/tomlv"
5479 #:unpack-path "github.com/BurntSushi/toml"))
5480 (description
5481 (string-append (package-description go-github-com-burntsushi-toml)
5482 " This package provides an command line interface (CLI)
5483tool."))))
5484
5470;;; 5485;;;
5471;;; Avoid adding new packages to the end of this file. To reduce the chances 5486;;; Avoid adding new packages to the end of this file. To reduce the chances
5472;;; of a merge conflict, place them above by existing packages with similar 5487;;; of a merge conflict, place them above by existing packages with similar