fix(bepasty): workaround for nixpkgs#500538
Some checks failed
build / build-sydpc (push) Failing after 26s
build / build-fruitbook (push) Failing after 3s
build / build-deertopia (push) Failing after 2s

https://github.com/NixOS/nixpkgs/pull/500538
This commit is contained in:
2026-03-16 16:47:30 -06:00
parent 8f36738629
commit bfb68db9de

View File

@@ -26,6 +26,26 @@ in {
config.services.bepasty.servers."bin.deertopia.net".dataDir
];
# See https://github.com/NixOS/nixpkgs/pull/500538
nixpkgs.overlays = [
(self: super: {
python3 = super.python3.override {
self = self.python3;
packageOverrides = self: super: {
xstatic-bootstrap =
super.xstatic-bootstrap.overridePythonAttrs (oldAttrs: rec {
version = "4.5.3.1";
src = oldAttrs.src.override {
pname = "XStatic-Bootstrap";
inherit version;
hash = "sha256-z2fSBUN7MlCKiLaafnxbviylqK5xCXORpqb1EOv9KCA=";
};
});
};
};
})
];
services.bepasty = {
enable = true;
servers."bin.deertopia.net" = {