mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
knot-dns: fix kdig +tls sending bad SNI
This commit is contained in:
parent
ed0f558fb0
commit
8688a5198f
1 changed files with 13 additions and 5 deletions
|
@ -15,11 +15,19 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "68e04961d0bf6ba193cb7ec658b295c4ff6e60b3754d64bcd77ebdcee0f283fd";
|
||||
};
|
||||
|
||||
patches = [(fetchpatch { # remove for >= 2.6.1
|
||||
name = "kdig-tls.patch";
|
||||
url = "https://gitlab.labs.nic.cz/knot/knot-dns/commit/b72d5cd032795.diff";
|
||||
sha256 = "0ig31rp82j49jh8n3s0dcf5abhh35mcp2k2wii7bh0c60ngb29k6";
|
||||
})];
|
||||
patches = [
|
||||
# remove both for >= 2.6.1
|
||||
(fetchpatch {
|
||||
name = "kdig-tls.patch";
|
||||
url = "https://gitlab.labs.nic.cz/knot/knot-dns/commit/b72d5cd032795.diff";
|
||||
sha256 = "0ig31rp82j49jh8n3s0dcf5abhh35mcp2k2wii7bh0c60ngb29k6";
|
||||
})
|
||||
(fetchpatch {
|
||||
name = "kdig-tls-sni.patch";
|
||||
url = "https://gitlab.labs.nic.cz/knot/knot-dns/commit/2e94ccee671ec70e.diff";
|
||||
sha256 = "0psl6650v7g240i8w196v7zxy6j11d0aa6hm11b7vnaimjshgibv";
|
||||
})
|
||||
];
|
||||
|
||||
outputs = [ "bin" "out" "dev" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue