ddclient: Upgrade to 3.8.1

This commit is contained in:
Rickard Nilsson
2012-11-08 13:54:53 +01:00
parent a70eb42f2b
commit 67f478d1ed
2 changed files with 22 additions and 85 deletions
+10 -5
View File
@@ -1,17 +1,23 @@
{buildPerlPackage, fetchurl, perl}:
{buildPerlPackage, fetchurl, perlPackages, iproute}:
buildPerlPackage {
name = "ddclient-3.8.0";
name = "ddclient-3.8.1";
src = fetchurl {
url = mirror://sourceforge/ddclient/ddclient-3.8.0.tar.gz ;
sha256 = "1cqz6fwx8bcl7zdrvm6irh3bzs8858gkyficww9simyjmz7z3w48";
url = mirror://sourceforge/ddclient/ddclient-3.8.1.tar.gz ;
sha256 = "f22ac7b0ec78e310d7b88a1cf636e5c00360b2ed9c087f231b3522ef3e6295f2";
};
buildInputs = [ perlPackages.IOSocketSSL ];
patches = [ ./ddclient-foreground.patch ];
# Use iproute2 instead of ifconfig
preConfigure = ''
touch Makefile.PL
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'
'';
installPhase = ''
@@ -20,5 +26,4 @@ buildPerlPackage {
'';
doCheck = false;
}