From a297f17c13d345978406dc4ceef508ba9610df7c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 24 Nov 2023 13:00:22 +0100 Subject: [PATCH] river: 0.2.4 -> 0.2.5 Changelog: https://github.com/riverwm/river/releases/tag/v0.2.5 --- pkgs/applications/window-managers/river/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/window-managers/river/default.nix b/pkgs/applications/window-managers/river/default.nix index e149bdd65218..55ab62be1322 100644 --- a/pkgs/applications/window-managers/river/default.nix +++ b/pkgs/applications/window-managers/river/default.nix @@ -14,14 +14,14 @@ , wayland-protocols , wlroots_0_16 , xwayland -, zig_0_10 +, zig_0_11 , withManpages ? true , xwaylandSupport ? true }: stdenv.mkDerivation (finalAttrs: { pname = "river"; - version = "0.2.4"; + version = "0.2.5"; outputs = [ "out" ] ++ lib.optionals withManpages [ "man" ]; @@ -30,14 +30,14 @@ stdenv.mkDerivation (finalAttrs: { repo = "river"; rev = "refs/tags/v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-cIcO6owM6eYn+obYVaBOVQpnBx4++KOqQk5Hzo3GcNs="; + hash = "sha256-Xd9hg7UGTBlEyw8BDpTQYq/IRC7vUXhMx9j7YcCaQ20="; }; nativeBuildInputs = [ pkg-config wayland xwayland - zig_0_10.hook + zig_0_11.hook ] ++ lib.optional withManpages scdoc;