hyprland: 0.47.2 -> 0.48.0

This commit is contained in:
Mihai Fufezan
2025-03-23 22:24:32 +05:30
committed by Masum Reza
parent bc1c18a9d8
commit c79e886f5b
2 changed files with 10 additions and 8 deletions
+5 -5
View File
@@ -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"
}
+5 -3
View File
@@ -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 = ''
@@ -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;
@@ -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