remove unused ddclient overlay

This commit is contained in:
Gabriel Fontes
2022-03-24 17:18:17 -03:00
parent dd15d98311
commit b58f34bb54
-27
View File
@@ -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 ];