trust-dns: use my patched version

This commit is contained in:
Colin 2024-05-10 05:23:25 +00:00
parent bef0099eec
commit fe5af959f4
2 changed files with 15 additions and 0 deletions

View File

@ -146,6 +146,8 @@ let
python3 = unpatched.python3.override {
packageOverrides = pythonPackagesOverlayFor final';
};
trust-dns = callPackage ./patched/trust-dns { inherit (unpatched) trust-dns; };
};
sane-overlay = {
sane = lib.recurseIntoAttrs (sane-additional // sane-patched);

View File

@ -0,0 +1,13 @@
{ trust-dns
, fetchFromGitea
}:
trust-dns.overrideAttrs (_: {
# patched so that the recursive resolver is compatible with my infra.
src = fetchFromGitea {
domain = "git.uninsane.org";
owner = "colin";
repo = "hickory-dns";
rev = "67649863faf2e08f63963a96a491a4025aaf8ed6";
hash = "sha256-FRnFmCJI/1f92DOI1VXSPivSBzIR371gmgLUfLLiuPc=";
};
})