Unverified Commit 8bd76c5e authored by Atemu's avatar Atemu Committed by GitHub
Browse files

Merge pull request #252097 from vcunat/p/nix-run-dig

dig: fix nix run usage
parents 59355d12 259a2d51
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -26381,7 +26381,11 @@ with pkgs;
  bind = callPackage ../servers/dns/bind { };
  dnsutils = bind.dnsutils;
  dig = bind.dnsutils;
  dig = bind.dnsutils // {
    meta = bind.dnsutils.meta // {
      mainProgram = "dig";
    };
  };
  bird = callPackage ../servers/bird { };