stateless-uptime-kuma/overlay.nix

9 lines
267 B
Nix
Raw Normal View History

2024-04-16 22:48:52 +02:00
final: prev: {
python3 = prev.python3.override {
packageOverrides = python-self: python-super: {
uptime-kuma-api = python-self.callPackage ./uptime-kuma-api.nix { };
};
};
2024-04-18 19:00:20 +02:00
statelessUptimeKuma = final.callPackage ./stateless-uptime-kuma.nix { };
2024-04-16 22:48:52 +02:00
}