Skip to content

Commit

Permalink
cloudflared: 2022.4.0 -> 2022.4.1 + fix tests for linux (#167419)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
  • Loading branch information
superherointj and SuperSandro2000 authored Apr 13, 2022
1 parent 0343e34 commit db6a3b6
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions pkgs/applications/networking/cloudflared/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, stdenv }:

buildGoModule rec {
pname = "cloudflared";
version = "2022.4.0";
version = "2022.4.1";

src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = version;
hash = "sha256-+40OK2q4WdvlLhoPfZH6q+pghgS7ZLmaZl2VbZK4rdA=";
hash = "sha256-dgvXbWtLP6sXBlqcx/xpw9LIbcE4VlYZQO5rrS34+9I=";
};

vendorSha256 = null;

doCheck = false;

ldflags = [ "-X main.Version=${version}" ];

preCheck = ''
# Workaround for: sshgen_test.go:74: mkdir /homeless-shelter/.cloudflared: no such file or directory
export HOME="$(mktemp -d)";
# Workaround for: protocol_test.go:11:
# lookup protocol-v2.argotunnel.com on [::1]:53: read udp [::1]:51876->[::1]:53: read: connection refused
substituteInPlace "edgediscovery/protocol_test.go" \
--replace "TestProtocolPercentage" "SkipProtocolPercentage"
'';

doCheck = !stdenv.isDarwin;

meta = with lib; {
description = "CloudFlare Tunnel daemon (and DNS-over-HTTPS client)";
homepage = "https://www.cloudflare.com/products/tunnel";
Expand Down

0 comments on commit db6a3b6

Please sign in to comment.