{ stdenv, lib, fetchFromGitHub, cmake, gtk3, xcursorgen, papirus-icon-theme, libsForQt5, hicolor-icon-theme, deepin-icon-theme, }: stdenv.mkDerivation rec { pname = "deepin-desktop-theme"; version = "1.0.13"; src = fetchFromGitHub { owner = "linuxdeepin"; repo = pname; rev = version; hash = "sha256-uNeRAsPbgC7IHHBIlczPXhnwZI65Le70D9MsbH+6Fwk="; }; makeFlags = [ "PREFIX=${placeholder "out"}" ]; nativeBuildInputs = [ cmake gtk3 xcursorgen ]; propagatedBuildInputs = [ libsForQt5.breeze-icons papirus-icon-theme hicolor-icon-theme deepin-icon-theme ]; dontDropIconThemeCache = true; preFixup = '' for theme in $out/share/icons/*; do gtk-update-icon-cache $theme done ''; meta = with lib; { description = "Provides a variety of well-designed theme resources"; homepage = "https://github.com/linuxdeepin/deepin-desktop-theme"; license = with licenses; [ gpl3Plus cc-by-sa-40 ]; platforms = platforms.linux; teams = [ teams.deepin ]; }; }