summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2024-12-26 20:24:32 +0000
committerSharlatan Hellseher <[email protected]>2025-01-21 23:42:24 +0000
commita0525d4193227340267b7989e8d06d0606afd87e (patch)
treeba1d35e557c6fb5281032ff7f89058ce1d20a151
parent0d29827223dbacad4b9a6d8e5fe1969418ddc94b (diff)
gnu: go-github-com-burntsushi-toml: Simplify.
* gnu/packages/golang-xyz.scm (go-github-com-burntsushi-toml) [arguments] <phases>: Use default 'check. Change-Id: I53dd7c48c47a42c07d0787718101d3985b63b576
-rw-r--r--gnu/packages/golang-xyz.scm10
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 44206a80c8..8a9a18189f 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1683,15 +1683,7 @@ strings into words like a POSIX or Windows shell would.")
(build-system go-build-system)
(arguments
(list
- #:import-path "github.com/BurntSushi/toml"
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: Replace when go-build-system supports nested path.
- (replace 'check
- (lambda* (#:key import-path tests? #:allow-other-keys)
- (when tests?
- (with-directory-excursion (string-append "src/" import-path)
- (invoke "go" "test" "-v" "./..."))))))))
+ #:import-path "github.com/BurntSushi/toml"))
(home-page "https://github.com/BurntSushi/toml")
(synopsis "Toml parser and encoder for Go")
(description