aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-05-07 16:09:19 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-05-07 21:33:45 +0100
commitfb44cd89dfdd38be200be298b803f5ca54ef5a2f (patch)
treeebc686f1bdad9583d43db50d8fcedd650c2e152c /gnu/packages
parentaa1090713aad76a652aa0159662880b1301e13ae (diff)
downloadguix-fb44cd89dfdd38be200be298b803f5ca54ef5a2f.tar.gz
guix-fb44cd89dfdd38be200be298b803f5ca54ef5a2f.zip
gnu: go-github-com-nbrownus-go-metrics-prometheus: Disable tests.
* gnu/packages/golang-xyz.scm (go-github-com-nbrownus-go-metrics-prometheus): Disable all tests. Change-Id: I7f340fd1e58edc0203068c762a1bbc798003a84b
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-xyz.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0cde48ad9e..7c255ceb53 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2706,7 +2706,11 @@ very fast, and tries to be entropy pool friendly.")
(sha256
(base32 "1kl9l08aas544627zmhkgp843qx94sxs4inxm20nw1hx7gp79dz0"))))
(build-system go-build-system)
- (arguments '(#:import-path "github.com/nbrownus/go-metrics-prometheus"))
+ (arguments
+ (list
+ ;; The project looks abandoned, tests failed with a new go-metrics.
+ #:tests? #f
+ #:import-path "github.com/nbrownus/go-metrics-prometheus"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
/td>services: openssh: Add forwarding options....* gnu/services/ssh.scm (<openssh-configuration>)[allow-agent-forwarding?] [allow-tcp-forwarding?, gateway-ports?]: New fields. (openssh-config-file): Handle them. * doc/guix.texi (Networking Services): Adjust accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Brown 2018-07-18gnu: services: Fix openssh service start error....* gnu/services/ssh.scm (openssh-shepherd-service): Require loopback. Julien Lepiller 2018-03-18services: openssh: Add 'accepted-environment' field....* gnu/services/ssh.scm (<openssh-configuration>)[accepted-environment]: New field. (openssh-config-file): Honor 'acccepted-environment'. * doc/guix.texi (Networking Services): Document it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Martin Castillo 2017-12-04install: Don't start sshd by default....Reported by Christopher Baines <mail@cbaines.net> at <https://lists.gnu.org/archive/html/guix-devel/2017-12/msg00058.html>. * gnu/services/ssh.scm (<openssh-configuration>)[%auto-start?]: New field. (openssh-shepherd-service): Honor it. * gnu/system/install.scm (%installation-services): Set '%auto-start?' to #f for openssh-service-type. Ludovic Courtès 2017-11-05services: Add 'description' fields....* gnu/services/admin.scm (rottlog-service-type) (tailon-service-type): Add 'description' field. * gnu/services/audio.scm (mpd-service-type): Likewise. * gnu/services/avahi.scm (avahi-service-type): Likewise. * gnu/services/ssh.scm (lsh-service-type) (openssh-service-type, dropbear-service-type): Likewise. Ludovic Courtès