Fix http 500 in home-assistant

This commit is contained in:
Jakob Lechner 2024-06-03 12:31:45 +02:00
parent 25e8e332c6
commit c5931e7cc7

View file

@ -1,4 +1,4 @@
args@{ config, lib, custom-utils, ... }:
args@{ config, lib, pkgs, custom-utils, ... }:
let
ports = import ../ports.nix args;
@ -54,5 +54,14 @@ in
level = "warning";
};
};
# Apply fix https://github.com/Kozea/Radicale/issues/1485
package = pkgs.radicale.overrideAttrs (p: {
src = pkgs.fetchFromGitHub {
owner = "Kozea";
repo = "Radicale";
rev = "5146537915f0cb397ae4ef53fe8a4f91fac5d972";
sha256 = "DRNiY665MHqmXAeGs39N3YfTAV0SEjzUNf3Nfk+kKvk=";
};
});
};
}