summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-13 08:53:33 -0500
committerGitHub <noreply@github.com>2023-11-13 08:53:33 -0500
commitea0ba50292da14c1a8ee06601b07fc4f7ca37cad (patch)
tree55c2e824556cf3921d99b4ff007ceb39abc7544b /pkgs/os-specific
parentc606cd4ef1e4ccd140b697a65ff14a5889c51d94 (diff)
parenteea2498560bac891dd21a1ea583ffe36d77aaebe (diff)
downloadnixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.tar
nixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.tar.gz
nixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.tar.bz2
nixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.tar.lz
nixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.tar.xz
nixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.tar.zst
nixpkgs-ea0ba50292da14c1a8ee06601b07fc4f7ca37cad.zip
Merge pull request #267128 from khaneliman/sketchybar
sketchybar: 2.19.1 -> 2.19.2
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/darwin/sketchybar/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/os-specific/darwin/sketchybar/default.nix b/pkgs/os-specific/darwin/sketchybar/default.nix
index e218ef09166..060fa90abdb 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.19.1";
+  version = "2.19.2";
 
   src = fetchFromGitHub {
     owner = "FelixKratz";
     repo = "SketchyBar";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-Ge15Df65fvNJ8ZdJ8giqvYytIivup2IIFPS+Ie3Yl9A=";
+    hash = "sha256-nuK1Ip/B1yGMtKwtRIiQ4ATJU5JEDfpQyq6+WR46EMw=";
   };
 
   buildInputs = [
@@ -43,12 +43,6 @@ 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
   ];