kholinar: reformat

This commit is contained in:
Charlotte Van Petegem 2024-08-02 13:43:56 +02:00
parent 9d0fa026f0
commit ca9f413ce2

View file

@ -83,12 +83,14 @@
nixpkgs.overlays = [
(final: prev: {
wlroots = prev.wlroots.overrideAttrs (old: {
patches = (old.patches or []) ++ [(
final.fetchpatch {
url = "https://gitlab.freedesktop.org/wlroots/wlroots/uploads/b4f932e370ed03d88f202191eaf60965/DisplayLink.patch";
hash = "sha256-1HheLsOSnj4OMiA35QCHkWprTNgAeG2tXrGbaQyUrF4=";
}
)];
patches = (old.patches or [ ]) ++ [
(
final.fetchpatch {
url = "https://gitlab.freedesktop.org/wlroots/wlroots/uploads/b4f932e370ed03d88f202191eaf60965/DisplayLink.patch";
hash = "sha256-1HheLsOSnj4OMiA35QCHkWprTNgAeG2tXrGbaQyUrF4=";
}
)
];
});
})
];