mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-09 01:44:15 +01:00
8b49bbe103
So far this hasn't broken anything despite not using the wlroots from upstream.
13 lines
290 B
Nix
13 lines
290 B
Nix
final: prev: {
|
|
hyprland = prev.hyprland.overrideAttrs (oldAttrs: rec {
|
|
version = "0.39.1";
|
|
|
|
src = prev.fetchFromGitHub {
|
|
owner = "hyprwm";
|
|
repo = "hyprland";
|
|
rev = "v${version}";
|
|
hash = "sha256-Urb/njWiHYUudXpmK8EKl9Z58esTIG0PxXw5LuM2r5g=";
|
|
};
|
|
});
|
|
}
|