{ lib , stdenv , fetchFromGitHub , gdk-pixbuf , gtk-engine-murrine , gtk_engines , librsvg }: stdenv.mkDerivation rec { pname = "marwaita"; version = "9.5"; src = fetchFromGitHub { owner = "darkomarko42"; repo = pname; rev = version; sha256 = "0hhiwims4nxq06kakc0hc4rn4hvnlrpbx6ca929vd2qbi6wa2k9h"; }; 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 ''; meta = with lib; { description = "GTK theme supporting Budgie, Pantheon, Mate, Xfce4 and GNOME desktops"; homepage = "https://www.pling.com/p/1239855/"; license = licenses.cc0; platforms = platforms.unix; maintainers = [ maintainers.romildo ]; }; }