mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
642c8a8d8d
a) Some providers can update multiple domains - support that. b) Make "zone" and "script" configurable. Some providers require these. c) Instead of leaving the ddclient daemon running all the time, use a systemd timer to kick it off. d) Don't use a predefined user - run everything via DynamicUser e) Add documentation
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, buildPerlPackage, fetchurl, perlPackages, iproute }:
|
|
|
|
buildPerlPackage rec {
|
|
name = "ddclient-${version}";
|
|
version = "3.8.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ddclient/${name}.tar.gz";
|
|
sha256 = "1j8zdn7fy7i0bjk3jf0hxnbnshc2yf054vxq64imxdpfd7n5zgfy";
|
|
};
|
|
|
|
# perl packages by default get devdoc which isn't present
|
|
outputs = [ "out" ];
|
|
|
|
buildInputs = with perlPackages; [ IOSocketSSL DigestSHA1 ];
|
|
|
|
patches = [ ./ddclient-line-buffer-stdout.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' \
|
|
--replace 'ifconfig -a' '${iproute}/sbin/ip addr show' \
|
|
--replace 'ifconfig $arg' '${iproute}/sbin/ip addr show $arg'
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 ddclient $out/bin/ddclient
|
|
install -Dm644 -t $out/share/doc/ddclient COP* ChangeLog README.* RELEASENOTE
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# there are no tests distributed with ddclient
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Client for updating dynamic DNS service entries";
|
|
homepage = https://sourceforge.net/p/ddclient/wiki/Home/;
|
|
license = licenses.gpl2Plus;
|
|
# Mostly since `iproute` is Linux only.
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|