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

dig: fix nix run usage
This commit is contained in:
Atemu
2023-08-29 10:51:05 +02:00
committed by GitHub
+5 -1
View File
@@ -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 { };