blob: 7bad946a61e4a43d9573c0bea6753aec55079349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# https://nixos.org/manual/nixpkgs/stable/#sec-overlays-definition
{ pkgs, ... }:
[
(final: prev: {
sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: {
patches = old.patches ++ [
# https://github.com/swaywm/sway/pull/8761
(pkgs.fetchpatch {
url = "https://github.com/swaywm/sway/commit/af7c6ec7b1daeeec67dd17e27fb75f1f1c347327.patch";
hash = "sha256-DxN/3IdswZ6q/ksBVr+wgwGe7ScJeg8gFHYQdQAueww=";
})
];
});
})
]
|