tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge #131965: knot-resolver: 5.3.2 -> 5.4.0
Vladimír Čunát
4 years ago
fd6fc2ca
3b4f4560
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
servers
dns
knot-resolver
default.nix
+3
-3
pkgs/servers/dns/knot-resolver/default.nix
···
17
18
unwrapped = stdenv.mkDerivation rec {
19
pname = "knot-resolver";
20
-
version = "5.3.2";
21
22
src = fetchurl {
23
url = "https://secure.nic.cz/files/knot-resolver/${pname}-${version}.tar.xz";
24
-
sha256 = "8b6f447d5fe93422d4c129a2d4004a977369c3aa6e55258ead1cbd488bc01436";
25
};
26
27
outputs = [ "out" "dev" ];
···
43
# some tests have issues with network sandboxing, apparently
44
+ optionalString doInstallCheck ''
45
echo 'os.exit(77)' > daemon/lua/trust_anchors.test/bootstrap.test.lua
46
-
sed '/^[[:blank:]]*test_dstaddr,$/d' -i \
47
tests/config/doh2.test.lua modules/http/http_doh.test.lua
48
'';
49
···
17
18
unwrapped = stdenv.mkDerivation rec {
19
pname = "knot-resolver";
20
+
version = "5.4.0";
21
22
src = fetchurl {
23
url = "https://secure.nic.cz/files/knot-resolver/${pname}-${version}.tar.xz";
24
+
sha256 = "534af671b98433b23b57039acc9d7d3c100a4888a8cf9aeba36161774ca0815e";
25
};
26
27
outputs = [ "out" "dev" ];
···
43
# some tests have issues with network sandboxing, apparently
44
+ optionalString doInstallCheck ''
45
echo 'os.exit(77)' > daemon/lua/trust_anchors.test/bootstrap.test.lua
46
+
sed -E '/^[[:blank:]]*test_(dstaddr|headers),?$/d' -i \
47
tests/config/doh2.test.lua modules/http/http_doh.test.lua
48
'';
49