Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ let
mkHyprlandPlugin,
}:
let
version = "0.47.0";
version = "0.48.0";

hyprland-plugins-src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprland-plugins";
rev = "refs/tags/v${version}";
hash = "sha256-zys4H2zSSIw54ecnYnBh2NUKZQraWD4B7qftuClrXho=";
tag = "v${version}";
hash = "sha256-q6v3nkJZdu45bwCuymQ+q3U7uwfA+M3GqsvZ0TgNsi4=";
};
in
mkHyprlandPlugin hyprland {
Expand Down
10 changes: 5 additions & 5 deletions pkgs/by-name/hy/hyprland/info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"branch": "v0.47.2-b",
"commit_hash": "882f7ad7d2bbfc7440d0ccaef93b1cdd78e8e3ff",
"commit_message": "version: bump to 0.47.2",
"date": "2025-02-02",
"tag": "v0.47.2"
"branch": "main",
"commit_hash": "5ee35f914f921e5696030698e74fb5566a804768",
"commit_message": "version: bump to 0.48.0",
"date": "2025-03-23",
"tag": "v0.48.0"
}
8 changes: 5 additions & 3 deletions pkgs/by-name/hy/hyprland/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,14 @@ assert assertMsg (!hidpiXWayland)

customStdenv.mkDerivation (finalAttrs: {
pname = "hyprland" + optionalString debug "-debug";
version = "0.47.2";
version = "0.48.0";

src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprland";
fetchSubmodules = true;
tag = "v${finalAttrs.version}";
hash = "sha256-dSKR1VpjpdJVZ5dmLgIvAu3K+DYrSbohZkqxSQhjw8U=";
hash = "sha256-QfXnNrQSa9xDrlzl/dJvsFgMmPECveyU/7cKJ2YyIzI=";
};

postPatch = ''
Expand Down Expand Up @@ -176,7 +176,7 @@ customStdenv.mkDerivation (finalAttrs: {
(optionals withSystemd [ systemd ])
];

mesonBuildType = if debug then "debugoptimized" else "release";
mesonBuildType = if debug then "debug" else "release";

dontStrip = debug;
strictDeps = true;
Expand All @@ -186,6 +186,8 @@ customStdenv.mkDerivation (finalAttrs: {
"xwayland" = enableXWayland;
"legacy_renderer" = legacyRenderer;
"systemd" = withSystemd;
"uwsm" = false;
"hyprpm" = false;
})
(mapAttrsToList mesonBool {
# PCH provides no benefits when building with Nix
Expand Down