summary refs log tree commit diff
path: root/pkgs/data/fonts/material-icons/default.nix
blob: ea44c9c79b1e28c7615b0bc3ec8b9a216f7940d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "material-icons-${version}";
  version = "3.0.1";

  src = fetchFromGitHub {
    owner  = "google";
    repo   = "material-design-icons";
    rev    = "${version}";
    sha256 = "17q5brcqyyc8gbjdgpv38p89s60cwxjlwy2ljnrvas5cj0s62np0";
  };

  buildCommand = ''
    mkdir -p $out/share/fonts/truetype
    cp $src/iconfont/*.ttf $out/share/fonts/truetype
  '';

  meta = with stdenv.lib; {
    description = "System status icons by Google, featuring material design";
    homepage = https://material.io/icons;
    license = licenses.asl20;
    platforms = platforms.all;
    maintainers = with maintainers; [ mpcsh ];
  };
}