{ stdenv , fetchFromGitHub , pantheon , meson , ninja , gettext }: stdenv.mkDerivation rec { pname = "elementary-gtk-theme"; version = "5.3.0"; repoName = "stylesheet"; src = fetchFromGitHub { owner = "elementary"; repo = repoName; rev = version; sha256 = "0kxzgqgzbkwi0h4r7zc5yl57k8cm165d1ki1nzmb442wp42q438y"; }; passthru = { updateScript = pantheon.updateScript { inherit repoName; attrPath = pname; }; }; nativeBuildInputs = [ gettext meson ninja ]; meta = with stdenv.lib; { description = "GTK theme designed to be smooth, attractive, fast, and usable"; homepage = https://github.com/elementary/stylesheet; license = licenses.gpl3; platforms = platforms.linux; maintainers = pantheon.maintainers; }; }