about summary refs log tree commit diff
path: root/pkgs/tools/networking/ddclient/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/ddclient/default.nix')
-rw-r--r--pkgs/tools/networking/ddclient/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/networking/ddclient/default.nix b/pkgs/tools/networking/ddclient/default.nix
index 0a44adbbec2d..20a22723c7fa 100644
--- a/pkgs/tools/networking/ddclient/default.nix
+++ b/pkgs/tools/networking/ddclient/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perlPackages, iproute }:
+{ stdenv, fetchurl, perlPackages, iproute, perl }:
 
 perlPackages.buildPerlPackage rec {
   name = "ddclient-${version}";
@@ -20,7 +20,9 @@ perlPackages.buildPerlPackage rec {
     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'
+      --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'
   '';
 
   installPhase = ''