2020-12-09 22:42:39 +01:00
|
|
|
self: super: {
|
|
|
|
anycast_healthchecker = self.python3.pkgs.callPackage ./anycast_healthchecker {};
|
2021-01-28 16:39:25 +01:00
|
|
|
flask-excel = self.python3.pkgs.callPackage ./flask-excel {};
|
2021-06-19 12:51:38 +02:00
|
|
|
iot-data = self.python3.pkgs.callPackage ./iot-data {};
|
2021-01-28 16:40:05 +01:00
|
|
|
pyexcel-xlsx = self.python3.pkgs.callPackage ./pyexcel-xlsx {};
|
2021-01-28 16:26:10 +01:00
|
|
|
pyexcel-webio = self.python3.pkgs.callPackage ./pyexcel-webio {};
|
2021-05-15 18:43:15 +02:00
|
|
|
uptimestatus = self.python3.pkgs.callPackage ./uptimestatus {};
|
2021-01-24 15:56:45 +01:00
|
|
|
wetter = self.python3.pkgs.callPackage ./wetter {
|
2022-02-26 13:15:30 +01:00
|
|
|
inherit (self) pkgconfig libsass;
|
2021-01-24 15:56:45 +01:00
|
|
|
};
|
2022-02-25 10:49:07 +01:00
|
|
|
# The current version in nixpkgs is b0rked, but no new release is made yet
|
|
|
|
prometheus-xmpp-alerts = super.prometheus-xmpp-alerts.overrideAttrs (oldAttrs: {
|
|
|
|
version = "master";
|
|
|
|
src = fetchGit {
|
|
|
|
url = "https://github.com/jelmer/prometheus-xmpp-alerts.git";
|
|
|
|
ref = "master";
|
|
|
|
rev = "0a48e172625de74b7c3ad3a1bd38f687601c207a";
|
|
|
|
};
|
|
|
|
});
|
2020-12-09 22:42:39 +01:00
|
|
|
}
|