{ lib , stdenv , fetchFromGitHub , gdk-pixbuf , gtk-engine-murrine , gtk_engines , librsvg , gitUpdater }: stdenv.mkDerivation rec { pname = "marwaita-pop_os"; version = "17.0"; src = fetchFromGitHub { owner = "darkomarko42"; repo = pname; rev = "1f3561f1231d0e9e931f93c5d59df19ed2205ce0"; hash = "sha256-WbCIMEWF5853TQyhq8aRoWzpsmjObm9hEc4I0pxDNOM="; }; buildInputs = [ gdk-pixbuf gtk_engines librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; dontBuild = true; installPhase = '' runHook preInstall mkdir -p $out/share/themes cp -a Marwaita* $out/share/themes runHook postInstall ''; passthru.updateScript = gitUpdater { }; meta = with lib; { description = "Marwaita GTK theme with Pop_os Linux style"; homepage = "https://www.pling.com/p/1377894/"; license = licenses.gpl3Only; platforms = platforms.unix; maintainers = [ maintainers.romildo ]; }; }