10 stdenvNoCC.mkDerivation rec {
11 pname = "deepin-icon-theme";
12 version = "2024.07.31";
14 src = fetchFromGitHub {
15 owner = "linuxdeepin";
18 hash = "sha256-Vt2rYZthGelXVUp8/L57ZlDsVEjjZhCv+kSGeU6nC2s=";
21 makeFlags = [ "PREFIX=${placeholder "out"}" ];
28 propagatedBuildInputs = [ papirus-icon-theme ];
30 dontDropIconThemeCache = true;
33 for theme in $out/share/icons/*; do
34 gtk-update-icon-cache $theme
39 description = "Provides the base icon themes on deepin";
40 homepage = "https://github.com/linuxdeepin/deepin-icon-theme";
41 license = licenses.gpl3Plus;
42 platforms = platforms.linux;
43 maintainers = teams.deepin.members;