{ lib, stdenv , fetchFromGitHub , gdk-pixbuf , gtk-engine-murrine , gtk_engines , librsvg }: stdenv.mkDerivation rec { pname = "marwaita"; version = "8.0"; src = fetchFromGitHub { owner = "darkomarko42"; repo = pname; rev = version; sha256 = "0ljigm5z13r0idfkjgy5ysq9pzdj66ql269p5phhp47aagmjcv3s"; }; 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 ]; }; }