summary refs log tree commit diff
path: root/pkgs/applications/misc/waybar
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2021-04-15 21:34:47 +0200
committerPatrick Hilhorst <git@hilhorst.be>2021-04-16 09:40:55 +0200
commit0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26 (patch)
tree84b2a52aa0adb1d3c44e37a84ea7a8ece582ac67 /pkgs/applications/misc/waybar
parent081b9423d4ae18836c7564b634627b214049f80e (diff)
downloadnixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.tar
nixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.tar.gz
nixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.tar.bz2
nixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.tar.lz
nixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.tar.xz
nixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.tar.zst
nixpkgs-0fce3c1237c9f7c571bd0dc16d923a7f00dcaa26.zip
waybar: 0.9.5 -> 0.9.7
Diffstat (limited to 'pkgs/applications/misc/waybar')
-rw-r--r--pkgs/applications/misc/waybar/default.nix16
1 files changed, 2 insertions, 14 deletions
diff --git a/pkgs/applications/misc/waybar/default.nix b/pkgs/applications/misc/waybar/default.nix
index d730f966347..6a3f33db27e 100644
--- a/pkgs/applications/misc/waybar/default.nix
+++ b/pkgs/applications/misc/waybar/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , meson
 , pkg-config
 , ninja
@@ -28,26 +27,15 @@
 
 stdenv.mkDerivation rec {
   pname = "waybar";
-  version = "0.9.5";
+  version = "0.9.7";
 
   src = fetchFromGitHub {
     owner = "Alexays";
     repo = "Waybar";
     rev = version;
-    sha256 = "1kzrgqaclfk6gcwhknxn28xl74gm5swipgn8kk8avacb4nsw1l9q";
+    sha256 = "17cn4d3dx92v40jd9vl41smp8hh3gf5chd1j2f7l1lrpfpnllg5x";
   };
 
-  patches = [
-    # XXX: REMOVE ON NEXT VERSION BUMP
-    # Fixes compatibility of the bluetooth and network modules with linux kernel
-    # >=5.11
-    # c.f. https://github.com/Alexays/Waybar/issues/994
-    (fetchpatch {
-      url = "https://patch-diff.githubusercontent.com/raw/Alexays/Waybar/pull/1015.patch";
-      sha256 = "sha256-jQZEM3Yru2yxcXAzapU47DoAv4ZoabrV80dH42I2OFk=";
-    })
-  ];
-
   nativeBuildInputs = [
     meson ninja pkg-config scdoc wrapGAppsHook cmake
   ] ++ lib.optional withMediaPlayer gobject-introspection;