Horizon EDA: Fix Intel GPU redraw issue
This commit is contained in:
parent
b67bf68f0d
commit
9195d6f6de
3 changed files with 24 additions and 0 deletions
13
overlays/horizon-eda.nix
Normal file
13
overlays/horizon-eda.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
horizon-eda = (super.horizon-eda.overrideAttrs (old: {
|
||||
# Add an environment variable to fix redraw issues on Intel Graphics
|
||||
patches = [
|
||||
./horizon_software_draw_surface.patch
|
||||
];
|
||||
}));
|
||||
})
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue