2023-09-19 00:17:43 +00:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
nixpkgs = {
|
|
|
|
overlays = [
|
|
|
|
(final: prev:
|
|
|
|
{
|
|
|
|
sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: {
|
|
|
|
# Add input panel to sway
|
2023-10-31 09:18:50 +00:00
|
|
|
# .patch file from https://github.com/swaywm/sway/pull/7226
|
2023-09-19 00:17:43 +00:00
|
|
|
patches = (old.patches or []) ++ [
|
2023-10-31 09:18:50 +00:00
|
|
|
(prev.fetchurl {
|
|
|
|
url = "https://github.com/swaywm/sway/commit/d1c6e44886d1047b3aa6ff6aaac383eadd72f36a.patch";
|
|
|
|
sha256 = "sha256-UnNnAgXVBPjhF7ytVpGEStbJK1RQuRIci5PgGEvLp80=";
|
2023-09-19 00:17:43 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
)
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|