fix: cascade of failling becaus of stupid git overlay
This commit is contained in:
parent
d8ad4e916d
commit
6f831d833e
5 changed files with 19 additions and 6 deletions
16
flake.nix
16
flake.nix
|
|
@ -49,8 +49,22 @@
|
|||
}).git;
|
||||
};
|
||||
|
||||
# Overlay to skip syrupy tests (broken in nixpkgs unstable)
|
||||
# Uses pythonPackagesExtensions to apply to all Python versions
|
||||
syrupyOverlay = final: prev: {
|
||||
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
|
||||
(pyFinal: pyPrev: {
|
||||
syrupy = pyPrev.syrupy.overrideAttrs (old: { doCheck = false; });
|
||||
})
|
||||
];
|
||||
};
|
||||
|
||||
overlaysList =
|
||||
[ ghostty.overlays.default chaotic.overlays.default gitOverlay ];
|
||||
[ ghostty.overlays.default
|
||||
chaotic.overlays.default
|
||||
gitOverlay
|
||||
syrupyOverlay
|
||||
];
|
||||
|
||||
mkPkgs = system:
|
||||
import nixpkgs {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue