about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2022-02-06 04:21:34 +0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-06 17:11:54 -0800
commit743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac (patch)
treebe53429479b5f0d21a81dcd71f6cf9ab99d7baf7 /pkgs/applications/window-managers
parent66ca0558df814b421fa1df5a76f4044a98700ef5 (diff)
downloadnixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.tar
nixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.tar.gz
nixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.tar.bz2
nixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.tar.lz
nixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.tar.xz
nixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.tar.zst
nixlib-743ea6e70dc2cfc6cc4d4428e91cd3b5ae4820ac.zip
river: 0.1.2 -> 0.1.3
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/river/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/window-managers/river/default.nix b/pkgs/applications/window-managers/river/default.nix
index 1e3effeba55b..b1f80d102d2a 100644
--- a/pkgs/applications/window-managers/river/default.nix
+++ b/pkgs/applications/window-managers/river/default.nix
@@ -14,18 +14,19 @@
 , libevdev
 , libinput
 , libGL
-, xwaylandSupport ? true, libX11
+, libX11
+, xwaylandSupport ? true
 }:
 
 stdenv.mkDerivation rec {
   pname = "river";
-  version = "0.1.2";
+  version = "0.1.3";
 
   src = fetchFromGitHub {
     owner = "riverwm";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0mysj6fmgiwzrfzm1rk09k4xa9qiqsdwvwr59b4rs010c1gsllwk";
+    sha256 = "sha256-bHfHhyDx/Wzhvhr7mAeVzJf0TBJgMTGb/ClGjWMLlQ8=";
     fetchSubmodules = true;
   };
 
@@ -55,8 +56,8 @@ stdenv.mkDerivation rec {
   '';
 
   /* Builder patch install dir into river to get default config
-     When installFlags is removed, river becomes half broken.
-     See https://github.com/riverwm/river/blob/7ffa2f4b9e7abf7d152134f555373c2b63ccfc1d/river/main.zig#L56
+    When installFlags is removed, river becomes half broken.
+    See https://github.com/riverwm/river/blob/7ffa2f4b9e7abf7d152134f555373c2b63ccfc1d/river/main.zig#L56
   */
   installFlags = [ "DESTDIR=$(out)" ];