Skip to content

Commit 64a3c0a

Browse files
committed
relic: 8.1.1 -> 8.2.0
Also disable aggressive sandboxing causing some checkPhase failures on Darwin: --- FAIL: TestCompress (0.00s) panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted
1 parent 8aca5a4 commit 64a3c0a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

pkgs/by-name/re/relic/package.nix

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77

88
buildGoModule rec {
99
pname = "relic";
10-
version = "8.1.1";
10+
version = "8.2.0";
1111

1212
src = fetchFromGitHub {
1313
owner = "sassoftware";
1414
repo = pname;
1515
rev = "v${version}";
16-
sha256 = "sha256-8pqLV4NWCI35FGe2NNqjatTAlVyvx1mskbcR/NacUvI=";
16+
sha256 = "sha256-dXvKbuAJCL+H0Gh0ZF1VvtY+7cgjq7gs8zwtenI3JuI=";
1717
};
1818

19-
vendorHash = "sha256-x0EqKotZJny+7FtRvdXWUkPpG0jntFGe/IpNzKVL2pI=";
19+
vendorHash = "sha256-3ERGIZZM8hNbt8kYApcqaL2LJ3V5aloSsmJavX2VSpw=";
2020

2121
ldflags = [
2222
"-s"
@@ -31,6 +31,10 @@ buildGoModule rec {
3131
};
3232
};
3333

34+
# Some of the tests use localhost networking. See discussion:
35+
# https://github.com/NixOS/nixpkgs/pull/374824
36+
__darwinAllowLocalNetworking = true;
37+
3438
meta = with lib; {
3539
homepage = "https://github.com/sassoftware/relic";
3640
description = "Service and a tool for adding digital signatures to operating system packages for Linux and Windows";

0 commit comments

Comments
 (0)