Merge #40796: pciutils: build with dns query support

+8 -2
+8 -2
pkgs/tools/system/pciutils/default.nix
··· 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ zlib kmod which ]; 13 14 - makeFlags = [ "SHARED=yes" "PREFIX=\${out}" "STRIP=" "HOST=${stdenv.hostPlatform.system}" "CROSS_COMPILE=${stdenv.cc.targetPrefix}" ]; 15 16 installTargets = "install install-lib"; 17 ··· 26 maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it 27 }; 28 } 29 -
··· 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ zlib kmod which ]; 13 14 + makeFlags = [ 15 + "SHARED=yes" 16 + "PREFIX=\${out}" 17 + "STRIP=" 18 + "HOST=${stdenv.hostPlatform.system}" 19 + "CROSS_COMPILE=${stdenv.cc.targetPrefix}" 20 + "DNS=yes" 21 + ]; 22 23 installTargets = "install install-lib"; 24 ··· 33 maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it 34 }; 35 }