summary refs log tree commit diff
path: root/pkgs/tools/networking/ddclient
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2019-05-29 11:51:17 -0400
committerAaron Andersen <aaron@fosslib.net>2019-05-29 11:53:36 -0400
commitcaa4d272fbc6bce82bf74955bd88356f21442bd8 (patch)
tree4af81de4d5598e08e55ee719f8ce967d26ebe6ae /pkgs/tools/networking/ddclient
parentd9d5c8d7dc75d1a337fb65e92d7f3fc9932b1511 (diff)
downloadnixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.tar
nixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.tar.gz
nixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.tar.bz2
nixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.tar.lz
nixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.tar.xz
nixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.tar.zst
nixpkgs-caa4d272fbc6bce82bf74955bd88356f21442bd8.zip
ddclient: fix fallout from #62068
Diffstat (limited to 'pkgs/tools/networking/ddclient')
-rw-r--r--pkgs/tools/networking/ddclient/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/networking/ddclient/default.nix b/pkgs/tools/networking/ddclient/default.nix
index 20a22723c7f..517a7046644 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 = ''