Merge pull request #147062 from zx2c4-forks/revert-139530-wireguard-tools

authored by

Sandro and committed by
GitHub
2b7d568a 72919367

+1 -4
+1 -4
pkgs/tools/networking/wireguard-tools/default.nix
··· 37 37 substituteInPlace $out/lib/systemd/system/wg-quick@.service \ 38 38 --replace /usr/bin $out/bin 39 39 '' + lib.optionalString stdenv.isLinux '' 40 - # we want to allow users to provide their own resolvconf implementation, i.e. the one provided by systemd-resolved 41 40 for f in $out/bin/*; do 42 - wrapProgram $f \ 43 - --prefix PATH : ${lib.makeBinPath [ procps iproute2 iptables ]} \ 44 - --suffix PATH : ${lib.makeBinPath [ openresolv ]} 41 + wrapProgram $f --prefix PATH : ${lib.makeBinPath [ procps iproute2 iptables openresolv ]} 45 42 done 46 43 '' + lib.optionalString stdenv.isDarwin '' 47 44 for f in $out/bin/*; do