{ lib, stdenv , fetchFromGitHub , nix-update-script , pantheon , wrapGAppsHook , pkg-config , meson , ninja , vala , gala , gtk3 , libgee , granite , gettext , mutter , mesa , json-glib , python3 , elementary-gtk-theme , elementary-icon-theme }: stdenv.mkDerivation rec { pname = "wingpanel"; version = "3.0.1"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; sha256 = "078yi36r452sc33mv2ck8z0icya1lhzhickllrlhc60rdri36sb8"; }; passthru = { updateScript = nix-update-script { attrPath = "pantheon.${pname}"; }; }; nativeBuildInputs = [ gettext meson ninja pkg-config python3 vala wrapGAppsHook ]; buildInputs = [ elementary-gtk-theme elementary-icon-theme gala granite gtk3 json-glib libgee mutter mesa # for libEGL ]; patches = [ ./indicators.patch ]; postPatch = '' chmod +x meson/post_install.py patchShebangs meson/post_install.py ''; preFixup = '' gappsWrapperArgs+=( # this theme is required --prefix XDG_DATA_DIRS : "${elementary-gtk-theme}/share" ) ''; meta = with lib; { description = "The extensible top panel for Pantheon"; longDescription = '' Wingpanel is an empty container that accepts indicators as extensions, including the applications menu. ''; homepage = "https://github.com/elementary/wingpanel"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = teams.pantheon.members; }; }