diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-19 15:27:50 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-22 22:47:23 +0100 |
commit | 83195dcda183b2ac70f45db958cd7123c0a28695 (patch) | |
tree | 65b37024b12a3406fd7fbf0ef9f3df09fd67540a | |
parent | 93fb74c2ed58c48b81499373b262da40208525a9 (diff) | |
download | guix-83195dcda183b2ac70f45db958cd7123c0a28695.tar.gz guix-83195dcda183b2ac70f45db958cd7123c0a28695.zip |
gnu: go-github-com-spf13-viper: Disable tests.
* gnu/packages/golang.scm (go-github-com-spf13-viper): Disable tests.
Change-Id: Id2a5eff6203c0c9907a188cfcda1fe2accfdf786
-rw-r--r-- | gnu/packages/golang.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 02ef243e18..3adcd70492 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3610,6 +3610,7 @@ GNU extensions} to the POSIX recommendations for command-line options.") (define-public go-github-com-spf13-viper (package (name "go-github-com-spf13-viper") + ;; Refreshing to a newer version requires long chain of missing packages. (version "1.7.0") (source (origin @@ -3624,6 +3625,7 @@ GNU extensions} to the POSIX recommendations for command-line options.") (build-system go-build-system) (arguments (list + #:tests? #f #:import-path "github.com/spf13/viper")) (propagated-inputs (list go-github-com-fsnotify-fsnotify |