diff --git a/pkgs/by-name/wl/wlr-layout-ui/package.nix b/pkgs/by-name/wl/wlr-layout-ui/package.nix index 3f7f3cae3003..2cf571540f68 100644 --- a/pkgs/by-name/wl/wlr-layout-ui/package.nix +++ b/pkgs/by-name/wl/wlr-layout-ui/package.nix @@ -5,24 +5,16 @@ python3.pkgs.buildPythonApplication rec { pname = "wlr-layout-ui"; - version = "1.6.11"; + version = "1.6.14"; pyproject = true; src = fetchFromGitHub { owner = "fdev31"; repo = "wlr-layout-ui"; rev = "refs/tags/${version}"; - hash = "sha256-aM8KV3jzim14lBVvn/AqUsfoRWrnKtRJeFSX1Thrq3M="; + hash = "sha256-Qgg4fdxOVkADDOxmQgQFSF/wgrEQihoRNC9oXeQvaoI="; }; - postPatch = '' - # The hyprland default.nix patches the version.h of hyprland so that the - # version info moves to the commit key. - substituteInPlace src/wlr_layout_ui/screens.py \ - --replace 'json.loads(subprocess.getoutput("hyprctl -j version"))["tag"]'\ - 'json.loads(subprocess.getoutput("hyprctl -j version"))["commit"]' - ''; - nativeBuildInputs = [ python3.pkgs.poetry-core ];