about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-11 06:01:00 +0000
committerGitHub <noreply@github.com>2023-11-11 06:01:00 +0000
commit46679c6a02c7a3b49f2500f72974ade365e561ae (patch)
tree2547985febdfd781ad80c9e7a736fc0c3efe09d0 /pkgs/os-specific/darwin
parent912311b7fd205f8542aaac6e26251bcb0b92fa7c (diff)
parentf209847507d446153d373f728215dfff7469d5bd (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/os-specific/darwin')
-rw-r--r--pkgs/os-specific/darwin/sketchybar/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/os-specific/darwin/sketchybar/default.nix b/pkgs/os-specific/darwin/sketchybar/default.nix
index 702da5a1718b7..e218ef0916694 100644
--- a/pkgs/os-specific/darwin/sketchybar/default.nix
+++ b/pkgs/os-specific/darwin/sketchybar/default.nix
@@ -22,13 +22,13 @@ let
 in
 stdenv.mkDerivation (finalAttrs: {
   pname = "sketchybar";
-  version = "2.18.0";
+  version = "2.19.1";
 
   src = fetchFromGitHub {
     owner = "FelixKratz";
     repo = "SketchyBar";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-GeFB+eE/NW9ZopwVSmSfMK3WiJLCJNXOdmQpYc3m8WE=";
+    hash = "sha256-Ge15Df65fvNJ8ZdJ8giqvYytIivup2IIFPS+Ie3Yl9A=";
   };
 
   buildInputs = [
@@ -43,6 +43,12 @@ stdenv.mkDerivation (finalAttrs: {
     SkyLight
   ];
 
+  # NOTE: Release didn't bump patch version remove with next release
+  postPatch = ''
+    substituteInPlace src/sketchybar.c \
+      --replace "#define PATCH 0" "#define PATCH 1"
+  '';
+
   makeFlags = [
     target
   ];