diff --git a/overlays/default.nix b/overlays/default.nix index a057d3d7..fdf02699 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -22,33 +22,6 @@ final: prev: patches = (oldAttrs.patches or [ ]) ++ [ ./todoman-kwargs-crash.patch ]; }); - ddclient = prev.ddclient.overrideAttrs (oldAttrs: rec { - version = "master"; - - src = final.fetchFromGitHub { - owner = "ddclient"; - repo = "ddclient"; - rev = "17160fb016448106d21742e53404f9e7a16348fc"; - sha256 = "sha256-yyYp6+4zfV2OuQFJ8/YqUy/7wqAAyRx/ihHGdZEA9Mc="; - }; - - buildInputs = with final.perlPackages; [ IOSocketSSL DigestSHA1 DataValidateIP JSONPP IOSocketInet6 final.perl ]; - nativeBuildInputs = [ final.autoreconfHook ]; - - preConfigure = '' - ./autogen - touch Makefile.PL - ''; - installPhase = '' - runHook preInstall - - install -Dm755 ddclient $out/bin/ddclient - install -Dm644 -t $out/share/doc/ddclient COPY* README.* ChangeLog.md - - runHook postInstall - ''; - }); - # Don't launch discord when using discocss discocss = prev.discocss.overrideAttrs (oldAttrs: rec { patches = (oldAttrs.patches or [ ]) ++ [ ./discocss-no-launch.patch ];