summary refs log tree commit diff
path: root/pkgs/applications/window-managers/sway/idle.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-12-07 00:23:10 +0000
committerMichael Weiss <dev.primeos@gmail.com>2022-12-26 22:55:02 +0100
commit89802ab160953605b18cf9f7037d1a22eab40be9 (patch)
treed9bc466f0b8d2bc104430ca8be8daddc14059d68 /pkgs/applications/window-managers/sway/idle.nix
parent7ea3d4395dc97845ff755caa790b3ccffdb681dc (diff)
downloadnixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.tar
nixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.tar.gz
nixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.tar.bz2
nixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.tar.lz
nixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.tar.xz
nixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.tar.zst
nixpkgs-89802ab160953605b18cf9f7037d1a22eab40be9.zip
swayidle: 1.7.1 -> 1.8.0
Diffstat (limited to 'pkgs/applications/window-managers/sway/idle.nix')
-rw-r--r--pkgs/applications/window-managers/sway/idle.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/applications/window-managers/sway/idle.nix b/pkgs/applications/window-managers/sway/idle.nix
index 97e3febc7b9..6479760a743 100644
--- a/pkgs/applications/window-managers/sway/idle.nix
+++ b/pkgs/applications/window-managers/sway/idle.nix
@@ -6,13 +6,13 @@
 
 stdenv.mkDerivation rec {
   pname = "swayidle";
-  version = "1.7.1";
+  version = "1.8.0";
 
   src = fetchFromGitHub {
     owner = "swaywm";
     repo = "swayidle";
     rev = version;
-    sha256 = "06iq12p4438d6bv3jlqsf01wjaxrzlnj1bnicn41kad563aq41xl";
+    sha256 = "sha256-/U6Y9H5ZqIJph3TZVcwr9+Qfd6NZNYComXuC1D9uGHg=";
   };
 
   strictDeps = true;
@@ -22,11 +22,8 @@ stdenv.mkDerivation rec {
 
   mesonFlags = [ "-Dman-pages=enabled" "-Dlogind=${if systemdSupport then "enabled" else "disabled"}" ];
 
-  # Remove the `%zu` patch for the next release after 1.7.1.
-  # https://github.com/swaywm/swayidle/commit/e81d40fca7533f73319e76e42fa9694b21cc9e6e
   postPatch = ''
     substituteInPlace main.c \
-      --replace '%lu' '%zu' \
       --replace '"sh"' '"${runtimeShell}"'
   '';