7 stdenvNoCC.mkDerivation rec {
8 pname = "material-design-icons";
11 src = fetchFromGitHub {
13 repo = "MaterialDesign-Webfont";
15 hash = "sha256-7t3i3nPJZ/tRslLBfY+9kXH8TR145GC2hPFYJeMHRL8=";
16 sparseCheckout = [ "fonts" ];
22 mkdir -p "$out/share/fonts/"{eot,truetype,woff,woff2}
23 cp fonts/*.eot "$out/share/fonts/eot/"
24 cp fonts/*.ttf "$out/share/fonts/truetype/"
25 cp fonts/*.woff "$out/share/fonts/woff/"
26 cp fonts/*.woff2 "$out/share/fonts/woff2/"
31 passthru.updateScript = nix-update-script { };
34 description = "7000+ Material Design Icons from the Community";
36 Material Design Icons' growing icon collection allows designers and
37 developers targeting various platforms to download icons in the format,
38 color and size they need for any project.
40 homepage = "https://materialdesignicons.com";
41 license = licenses.asl20;
42 platforms = platforms.all;
43 maintainers = with maintainers; [ vlaci dixslyf ];