dnstracer: move to by-name

This commit is contained in:
jopejoe1
2025-08-21 08:46:03 +02:00
parent 065ae9b9d3
commit f5afdf552d
2 changed files with 2 additions and 6 deletions
@@ -2,7 +2,7 @@
lib,
stdenv,
fetchurl,
libresolv,
darwin,
perl,
}:
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
install -Dm755 -t $man/share/man/man8 dnstracer.8
'';
buildInputs = [ ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libresolv ];
buildInputs = [ ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libresolv ];
NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-lresolv";
-4
View File
@@ -15957,10 +15957,6 @@ with pkgs;
compressDrvWeb = callPackage ../build-support/compress-drv/web.nix { };
dnstracer = callPackage ../tools/networking/dnstracer {
inherit (darwin) libresolv;
};
diceware = with python3Packages; toPythonApplication diceware;
xml2rfc = with python3Packages; toPythonApplication xml2rfc;