Fix radicale infcloud??

This commit is contained in:
Malte Tammena 2021-06-10 22:48:43 +02:00
parent a26a021810
commit 668170e6e5

View file

@ -4,15 +4,10 @@ let
internalPort = 5232;
radicaleOverlay = self: super: {
#radicaleWithInfcloud = super.radicale.overrideAttrs (old: {
# propagatedBuildInputs = old.propagatedBuildInputs ++ [
# pkgs.python3Packages.radicale_infcloud
# ];
#});
radicaleWithInfcloud = super.radicale.override {
python3 = super.python3.withPackages
(packages: with packages; [ bcrypt radicale_infcloud ]);
};
radicaleWithInfcloud = super.radicale.overrideAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs
++ [ pkgs.python3Packages.radicale_infcloud ];
});
};
in {