{ stdenv , fetchFromGitHub , pantheon , meson , python3 , ninja , pkgconfig , vala , libgee , granite , gtk3 , glib , polkit , zeitgeist , switchboard , lightlocker }: stdenv.mkDerivation rec { pname = "switchboard-plug-security-privacy"; version = "2.2.3"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; sha256 = "1rgbw2kfcq7cdpvl6sy6r6d4iprm1j2n3knbnbxy8sylfc83bwri"; }; passthru = { updateScript = pantheon.updateScript { attrPath = "pantheon.${pname}"; }; }; nativeBuildInputs = [ meson ninja pkgconfig python3 vala ]; buildInputs = [ glib granite gtk3 libgee polkit switchboard lightlocker zeitgeist ]; postPatch = '' chmod +x meson/post_install.py patchShebangs meson/post_install.py ''; meta = with stdenv.lib; { description = "Switchboard Security & Privacy Plug"; homepage = "https://github.com/elementary/switchboard-plug-security-privacy"; license = licenses.lgpl3Plus; platforms = platforms.linux; maintainers = pantheon.maintainers; }; }