8 lines
142 B
Nix
8 lines
142 B
Nix
|
self: super: {
|
||
|
kitty = super.kitty.overrideAttrs (
|
||
|
o: rec {
|
||
|
patches = o.patches ++ [ ./patches/kitty/darwin.patch ];
|
||
|
}
|
||
|
);
|
||
|
}
|