hyprlandPlugins.hy3: 0.39.1 -> 0.40.0
This fixes the compatibility issue with hyprland 0.40 and adds two patches that fixes regressions that were fixed after the latest tag.
This commit is contained in:
parent
dc2ac5f4ea
commit
e8bc21290e
@ -3,6 +3,7 @@
|
|||||||
, pkg-config
|
, pkg-config
|
||||||
, stdenv
|
, stdenv
|
||||||
, hyprland
|
, hyprland
|
||||||
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
mkHyprlandPlugin = hyprland:
|
mkHyprlandPlugin = hyprland:
|
||||||
@ -24,15 +25,27 @@ let
|
|||||||
hy3 = { fetchFromGitHub, cmake, hyprland }:
|
hy3 = { fetchFromGitHub, cmake, hyprland }:
|
||||||
mkHyprlandPlugin hyprland {
|
mkHyprlandPlugin hyprland {
|
||||||
pluginName = "hy3";
|
pluginName = "hy3";
|
||||||
version = "0.39.1";
|
version = "0.40.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "outfoxxed";
|
owner = "outfoxxed";
|
||||||
repo = "hy3";
|
repo = "hy3";
|
||||||
rev = "hl0.39.1";
|
rev = "hl0.40.0";
|
||||||
hash = "sha256-PqVld+oFziSt7VZTNBomPyboaMEAIkerPQFwNJL/Wjw=";
|
hash = "sha256-Y9bIML3C5xyKKv+Yel4LUfSkScwGunOVZkg+Z1dPwHI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/outfoxxed/hy3/commit/33c8d761ff1c1d2264f7549a7bcfc010929d153c.patch";
|
||||||
|
hash = "sha256-GcLQ38IVGB6VFMviKqWAM9ayjC2lpWekx3kqrnwsLhk=";
|
||||||
|
})
|
||||||
|
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/outfoxxed/hy3/commit/400930e0391a0e13ebbc6a3b9fe162e00aaad89a.patch";
|
||||||
|
hash = "sha256-DVrZSkXE4uKrAceGpUZklqrVRzV1CpNRgjpq0uOz0jk=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user