12 stdenvNoCC.mkDerivation rec {
13 pname = "flat-remix-icon-theme";
16 src = fetchFromGitHub {
20 sha256 = "sha256-3TkBRgoT2AW0Sb0CrXdxh53/jYARAMFC/TIj/r/zruo=";
27 propagatedBuildInputs = [
29 pantheon.elementary-icon-theme
35 dontDropIconThemeCache = true;
38 mkdir -p $out/share/icons
39 mv Flat-Remix* $out/share/icons/
41 for theme in $out/share/icons/*; do
42 gtk-update-icon-cache $theme
44 symlinkParentIconThemes
45 recordPropagatedDependencies
49 description = "Flat remix is a pretty simple icon theme inspired on material design";
50 homepage = "https://drasite.com/flat-remix";
51 license = with licenses; [ gpl3Only ];
52 # breeze-icons and pantheon.elementary-icon-theme dependencies are restricted to linux
53 platforms = platforms.linux;