{ lib , stdenv , fetchFromGitHub , nix-update-script , pkg-config , meson , python3 , ninja , vala , gtk3 , granite , wingpanel , libnotify , pulseaudio , libcanberra-gtk3 , libgee , libxml2 }: stdenv.mkDerivation rec { pname = "wingpanel-indicator-sound"; version = "6.0.1"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; sha256 = "sha256-FHZ4YhGLqGTz5Po2XFJvnWuAi1eHKcT9zzgJFHic02E="; }; nativeBuildInputs = [ libxml2 meson ninja pkg-config python3 vala ]; buildInputs = [ granite gtk3 libcanberra-gtk3 libgee libnotify pulseaudio wingpanel ]; postPatch = '' chmod +x meson/post_install.py patchShebangs meson/post_install.py ''; passthru = { updateScript = nix-update-script { attrPath = "pantheon.${pname}"; }; }; meta = with lib; { description = "Sound Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-sound"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = teams.pantheon.members; }; }