python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / ddclient / default.nix
blobe4bb685b518e8304f8b72b19c2d64895b136c5bd
1 { lib, fetchFromGitHub, perlPackages, iproute2, perl }:
3 perlPackages.buildPerlPackage rec {
4   pname = "ddclient";
5   version = "3.9.1";
7   src = fetchFromGitHub {
8     owner = "ddclient";
9     repo = "ddclient";
10     rev = "v${version}";
11     sha256 = "0hf377g4j9r9sac75xp17nk2h58mazswz4vkg4g2gl2yyhvzq91w";
12   };
14   # perl packages by default get devdoc which isn't present
15   outputs = [ "out" ];
17   buildInputs = with perlPackages; [ IOSocketSSL DigestSHA1 DataValidateIP JSONPP IOSocketInet6 ];
19   # Use iproute2 instead of ifconfig
20   preConfigure = ''
21     touch Makefile.PL
22     substituteInPlace ddclient \
23       --replace 'in the output of ifconfig' 'in the output of ip addr show' \
24       --replace 'ifconfig -a' '${iproute2}/sbin/ip addr show' \
25       --replace 'ifconfig $arg' '${iproute2}/sbin/ip addr show $arg' \
26       --replace '/usr/bin/perl' '${perl}/bin/perl' # Until we get the patchShebangs fixed (issue #55786) we need to patch this manually
27   '';
29   installPhase = ''
30     runHook preInstall
32     install -Dm755 ddclient $out/bin/ddclient
33     install -Dm644 -t $out/share/doc/ddclient COP* ChangeLog README.* RELEASENOTE
35     runHook postInstall
36   '';
38   # there are no tests distributed with ddclient
39   doCheck = false;
41   meta = with lib; {
42     description = "Client for updating dynamic DNS service entries";
43     homepage = "https://ddclient.net/";
44     license = licenses.gpl2Plus;
45     # Mostly since `iproute` is Linux only.
46     platforms = platforms.linux;
47     maintainers = with maintainers; [ SuperSandro2000 ];
48   };