redis: Temporarily disable tests

This commit is contained in:
Mikael 2024-08-27 23:37:52 +02:00
parent b4ad550973
commit cde7eaec90
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0
2 changed files with 6 additions and 0 deletions

View file

@ -11,4 +11,5 @@ nixpkgs.lib.composeManyExtensions [
self.overlays.no-alsa
self.overlays.no-jemalloc
self.overlays.modern-minimal
self.overlays.fixes
] final prev

5
overlay/fixes.nix Normal file
View file

@ -0,0 +1,5 @@
{ ... }: final: prev: {
redis = prev.redis.overrideAttrs ({
doCheck = false;
});
}