about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/material-symbols/default.nix
blob: b40f3c37cc61268f1e33cc36dc1d69b2cd4cbb4e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, stdenvNoCC
, fetchFromGitHub
, rename
}:

stdenvNoCC.mkDerivation {
  pname = "material-symbols";
  version = "unstable-2023-11-17";

  src = fetchFromGitHub {
    owner = "google";
    repo = "material-design-icons";
    rev = "a90037f80d7db37279a7c1d863559e247ed81b05";
    hash = "sha256-96nEvc9eBuAncPUun3JBeg+KW2GqT3mQNgdOCVdhEM0=";
    sparseCheckout = [ "variablefont" ];
  };

  nativeBuildInputs = [ rename ];

  installPhase = ''
    runHook preInstall

    rename 's/\[FILL,GRAD,opsz,wght\]//g' variablefont/*
    install -Dm755 variablefont/*.ttf -t $out/share/fonts/TTF
    install -Dm755 variablefont/*.woff2 -t $out/share/fonts/woff2

    runHook postInstall
  '';

  meta = with lib; {
    description = "Material Symbols icons by Google";
    homepage = "https://fonts.google.com/icons";
    downloadPage = "https://github.com/google/material-design-icons";
    license = lib.licenses.asl20;
    maintainers = with maintainers; [ fufexan ];
    platforms = platforms.all;
  };
}