Update pleroma-fe
This commit is contained in:
parent
1b8ce7f271
commit
bcc39ec564
1 changed files with 18 additions and 11 deletions
29
flake.nix
29
flake.nix
|
@ -115,17 +115,24 @@
|
|||
vf2KernelPackages = pkgs.linuxPackagesFor vf2Kernel;
|
||||
}
|
||||
else {}
|
||||
) // (if system == "aarch64-linux" || system == "x86_64-linux" then {
|
||||
hydra = hydra.packages.${system}.hydra.overrideAttrs (super: {
|
||||
doCheck = false;
|
||||
patches = (super.patches or []) ++ [
|
||||
./ci/hydra/add-ca-support.patch
|
||||
./ci/hydra/add-gitea-push-hook.patch
|
||||
./ci/hydra/jobset-inputs-for-flakes.patch
|
||||
./ci/hydra/remove-hydra-size-limit.patch
|
||||
];
|
||||
});
|
||||
} else {});
|
||||
)
|
||||
// (
|
||||
if system == "aarch64-linux" || system == "x86_64-linux"
|
||||
then {
|
||||
hydra = hydra.packages.${system}.hydra.overrideAttrs (super: {
|
||||
doCheck = false;
|
||||
patches =
|
||||
(super.patches or [])
|
||||
++ [
|
||||
./ci/hydra/add-ca-support.patch
|
||||
./ci/hydra/add-gitea-push-hook.patch
|
||||
./ci/hydra/jobset-inputs-for-flakes.patch
|
||||
./ci/hydra/remove-hydra-size-limit.patch
|
||||
];
|
||||
});
|
||||
}
|
||||
else {}
|
||||
);
|
||||
|
||||
overlays = import ./overlays;
|
||||
modules = import ./modules;
|
||||
|
|
Reference in a new issue