third_party: disable xmpp support in ntfy
This commit is contained in:
parent
605dae808a
commit
f7ca8c5140
1 changed files with 6 additions and 0 deletions
6
third_party/default.nix
vendored
6
third_party/default.nix
vendored
|
@ -13,6 +13,12 @@ let
|
|||
packageOverrides = pkgs: {
|
||||
factorio = pkgs.factorio.override depot.ops.secrets.factorio;
|
||||
factorio-experimental = pkgs.factorio-experimental.override depot.ops.secrets.factorio;
|
||||
ntfy = (pkgs.ntfy.override {
|
||||
withXmpp = false;
|
||||
}).overridePythonAttrs (oldAttrs: {
|
||||
doCheck = false;
|
||||
checkPhase = "";
|
||||
});
|
||||
delve = pkgs.delve.overrideAttrs (oldAttrs: {
|
||||
meta = oldAttrs.meta // {
|
||||
platforms = oldAttrs.meta.platforms ++ [ "aarch64-linux" ];
|
||||
|
|
Loading…
Reference in a new issue