summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorAustin Horstman <khaneliman12@gmail.com>2023-11-12 19:22:38 -0600
committerAustin Horstman <khaneliman12@gmail.com>2023-11-12 21:02:05 -0600
commiteea2498560bac891dd21a1ea583ffe36d77aaebe (patch)
treecff2c143b390650f8bac4f8dbd5e806bce70f863 /pkgs/os-specific
parent54da2986be07ad2ffbade0b3cefaf7f0c2553c88 (diff)
downloadnixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.tar
nixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.tar.gz
nixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.tar.bz2
nixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.tar.lz
nixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.tar.xz
nixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.tar.zst
nixpkgs-eea2498560bac891dd21a1ea583ffe36d77aaebe.zip
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
   ];