9 lines
263 B
Nix
9 lines
263 B
Nix
_:
|
|
final: prev: {
|
|
gnome-console = prev.gnome-console.overrideAttrs (prevAttrs: {
|
|
patches = (prevAttrs.patches or [ ]) ++ [
|
|
./gnome-console-Add-image-and-file-path-pasting-support-for.patch
|
|
./gnome-console-fix-copy-and-paste.patch
|
|
];
|
|
});
|
|
}
|