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

46 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, perlPackages, iproute }:
perlPackages.buildPerlPackage rec {
name = "ddclient-${version}";
version = "3.9.0";
src = fetchurl {
url = "mirror://sourceforge/ddclient/${name}.tar.gz";
sha256 = "0fwyhab8yga2yi1kdfkbqxa83wxhwpagmj1w1mwkg2iffh1fjjlw";
};
# perl packages by default get devdoc which isn't present
outputs = [ "out" ];
buildInputs = with perlPackages; [ IOSocketSSL DigestSHA1 DataValidateIP JSONPP ];
2012-11-08 13:54:53 +01:00
# Use iproute2 instead of ifconfig
preConfigure = ''
touch Makefile.PL
2017-08-13 15:45:25 +02:00
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'
'';
installPhase = ''
runHook preInstall
2017-08-13 15:45:25 +02:00
install -Dm755 ddclient $out/bin/ddclient
install -Dm644 -t $out/share/doc/ddclient COP* ChangeLog README.* RELEASENOTE
runHook postInstall
'';
2017-08-13 15:45:25 +02:00
# there are no tests distributed with ddclient
doCheck = false;
meta = with stdenv.lib; {
description = "Client for updating dynamic DNS service entries";
2017-08-13 15:45:25 +02:00
homepage = https://sourceforge.net/p/ddclient/wiki/Home/;
license = licenses.gpl2Plus;
2016-02-21 20:24:07 +01:00
# Mostly since `iproute` is Linux only.
2017-08-13 15:45:25 +02:00
platforms = platforms.linux;
};
}