From caa4d272fbc6bce82bf74955bd88356f21442bd8 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 29 May 2019 11:51:17 -0400 Subject: [PATCH] ddclient: fix fallout from #62068 --- pkgs/tools/networking/ddclient/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/ddclient/default.nix b/pkgs/tools/networking/ddclient/default.nix index 20a22723c7fa..517a70466441 100644 --- a/pkgs/tools/networking/ddclient/default.nix +++ b/pkgs/tools/networking/ddclient/default.nix @@ -19,10 +19,9 @@ perlPackages.buildPerlPackage rec { touch Makefile.PL substituteInPlace ddclient \ --replace 'in the output of ifconfig' 'in the output of ip addr show' \ - --replace 'ifconfig -a' '${iproute}/sbin/ip addr show' \ - --replace 'ifconfig $arg' '${iproute}/sbin/ip addr show $arg' \ - # Until we get the patchShebangs fixed (issue #55786) we need to patch this manually - --replace '/usr/bin/perl' '${perl}/bin/perl' + --replace 'ifconfig -a' '${iproute}/sbin/ip addr show' \ + --replace 'ifconfig $arg' '${iproute}/sbin/ip addr show $arg' \ + --replace '/usr/bin/perl' '${perl}/bin/perl' # Until we get the patchShebangs fixed (issue #55786) we need to patch this manually ''; installPhase = ''