flake/nixos/profiles/core/packages/overlays/sway.nix

15 lines
453 B
Nix
Raw Normal View History

2023-12-16 07:22:27 +00:00
_final: prev: {
2023-11-09 04:21:04 +00:00
sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: {
# Add input panel to sway
# .patch file from https://github.com/swaywm/sway/pull/7226
patches =
(old.patches or [])
++ [
(prev.fetchurl {
url = "https://github.com/swaywm/sway/commit/d1c6e44886d1047b3aa6ff6aaac383eadd72f36a.patch";
sha256 = "sha256-UnNnAgXVBPjhF7ytVpGEStbJK1RQuRIci5PgGEvLp80=";
})
];
});
}