nixpkgs/pkgs/tools/networking/ddclient/default.nix

30 lines
827 B
Nix
Raw Normal View History

2012-11-08 13:54:53 +01:00
{buildPerlPackage, fetchurl, perlPackages, iproute}:
buildPerlPackage {
2012-11-08 13:54:53 +01:00
name = "ddclient-3.8.1";
src = fetchurl {
2012-11-08 13:54:53 +01:00
url = mirror://sourceforge/ddclient/ddclient-3.8.1.tar.gz ;
sha256 = "f22ac7b0ec78e310d7b88a1cf636e5c00360b2ed9c087f231b3522ef3e6295f2";
};
2012-11-08 13:54:53 +01:00
buildInputs = [ perlPackages.IOSocketSSL ];
patches = [ ./ddclient-foreground.patch ];
2012-11-08 13:54:53 +01:00
# Use iproute2 instead of ifconfig
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'
'';
installPhase = ''
mkdir -p $out/bin
cp ddclient $out/bin
'';
doCheck = false;
}