Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
pantheon.wingpanel: fix potentially overlapping windows
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed Mar 7, 2019
1 parent d7764de commit 3ba5f17
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions pkgs/desktops/pantheon/desktop/wingpanel/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pantheon, wrapGAppsHook, pkgconfig, meson, ninja
{ stdenv, fetchFromGitHub, pantheon, fetchpatch, wrapGAppsHook, pkgconfig, meson, ninja
, vala, gala, gtk3, libgee, granite, gettext, glib-networking, mutter, json-glib
, python3, gobject-introspection }:

Expand Down Expand Up @@ -40,7 +40,14 @@ stdenv.mkDerivation rec {
mutter
];

patches = [ ./indicators.patch ];
patches = [
./indicators.patch
# Fix wingpanel potentially overlapping windows: https://github.com/elementary/wingpanel/pull/198
(fetchpatch {
url = "https://github.com/elementary/wingpanel/commit/fc1b8ea3d6cfc5d6e4034af177eecd4542a59833.patch";
sha256 = "0w5z56di5lxwg9vb96f9y4r2q05znwpn814m2w12l3impf5xsdqs";
})
];

postPatch = ''
chmod +x meson/post_install.py
Expand Down

0 comments on commit 3ba5f17

Please sign in to comment.