ChangedetectionIo : Add overlay to disable tests.

This commit is contained in:
Dmitry Voronin 2024-08-01 16:39:30 +03:00
parent 0c2b50495a
commit 4c1e9ac9e5
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -0,0 +1,8 @@
{ ... }: {
# HACK: Remove sometime later.
nixpkgs.overlays = [ (final: prev: {
changedetection-io = prev.changedetection-io.overrideAttrs (old: {
doCheck = false;
});
})];
}