about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/dcrwallet/default.nix
diff options
context:
space:
mode:
authorPaul Meyer <49727155+katexochen@users.noreply.github.com>2024-03-10 23:39:45 +0100
committerPaul Meyer <49727155+katexochen@users.noreply.github.com>2024-03-19 11:10:28 +0100
commitb6f733088828e2d4ac0e8d6c21e6eb6f7a9774b8 (patch)
treed9c955d0117d88b54ce65872ccaefc0c1ac9808f /pkgs/applications/blockchains/dcrwallet/default.nix
parent0dda0db85289eacc95c86c4c43ac1fd05e4bbe4e (diff)
dcrwallet: unpin Go version
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
Diffstat (limited to 'pkgs/applications/blockchains/dcrwallet/default.nix')
-rw-r--r--pkgs/applications/blockchains/dcrwallet/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/blockchains/dcrwallet/default.nix b/pkgs/applications/blockchains/dcrwallet/default.nix
index fa604e9aac938..6fe4afa5b5841 100644
--- a/pkgs/applications/blockchains/dcrwallet/default.nix
+++ b/pkgs/applications/blockchains/dcrwallet/default.nix
@@ -15,6 +15,13 @@ buildGoModule rec {
 
   subPackages = [ "." ];
 
+  checkFlags = [
+    # Test fails with:
+    # 'x509_test.go:201: server did not report bad certificate error;
+    # instead errored with [...] tls: unknown certificate authority (*url.Error)'
+    "-skip=^TestUntrustedClientCert$"
+  ];
+
   meta = {
     homepage = "https://decred.org";
     description = "A secure Decred wallet daemon written in Go (golang)";