nix-config/overlays/hyprlang.nix
Donovan Glover 546b0f720a
overlays: Update hyprland/hyprlang to fix hyprctl bugs
Hyprland 0.36.0 changes the config quite a bit. Updating Hyprland to the
latest commit on main and hyprlang to 0.5.0 fixes a lot of the bugs that
were immediately caught after this release.
2024-03-08 21:22:47 -05:00

17 lines
367 B
Nix

{
nixpkgs.overlays = [
(final: prev: {
hyprlang = prev.hyprlang.overrideAttrs (oldAttrs: rec {
version = "0.5.0";
src = prev.fetchFromGitHub {
owner = "hyprwm";
repo = "hyprlang";
rev = "v${version}";
hash = "sha256-bR4o3mynoTa1Wi4ZTjbnsZ6iqVcPGriXp56bZh5UFTk=";
};
});
})
];
}