2012-11-08 13:54:53 +01:00
|
|
|
{buildPerlPackage, fetchurl, perlPackages, iproute}:
|
2009-09-16 13:27:18 +02:00
|
|
|
|
|
|
|
buildPerlPackage {
|
2014-01-13 17:53:23 +01:00
|
|
|
name = "ddclient-3.8.2";
|
2009-09-16 13:27:18 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-13 17:53:23 +01:00
|
|
|
url = mirror://sourceforge/ddclient/ddclient-3.8.2.tar.gz ;
|
|
|
|
sha256 = "17mcdqxcwa6c05m8xhxi4r37j4qvbp3wgbpvzqgmrmgwava5wcrw";
|
2009-09-16 13:27:18 +02:00
|
|
|
};
|
|
|
|
|
2013-11-24 23:02:27 +01:00
|
|
|
buildInputs = [ perlPackages.IOSocketSSL perlPackages.DigestSHA1 ];
|
2012-11-08 13:54:53 +01:00
|
|
|
|
2009-09-16 13:27:18 +02:00
|
|
|
patches = [ ./ddclient-foreground.patch ];
|
|
|
|
|
2012-11-08 13:54:53 +01:00
|
|
|
# Use iproute2 instead of ifconfig
|
2009-09-16 13:27:18 +02:00
|
|
|
preConfigure = ''
|
|
|
|
touch Makefile.PL
|
2012-11-08 13:54:53 +01:00
|
|
|
substituteInPlace ddclient --replace 'in the output of ifconfig' 'in the output of ip addr show'
|
|
|
|
substituteInPlace ddclient --replace 'ifconfig -a' '${iproute}/sbin/ip addr show'
|
|
|
|
substituteInPlace ddclient --replace 'ifconfig $arg' '${iproute}/sbin/ip addr show $arg'
|
2009-09-16 13:27:18 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2009-09-16 13:27:18 +02:00
|
|
|
cp ddclient $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
}
|