evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / material-icons / package.nix
blob993e25ba2cd33488759aeba83f4b142ad00beb96
1 { lib, stdenvNoCC, fetchFromGitHub, nix-update-script }:
3 stdenvNoCC.mkDerivation (finalAttrs: {
4   pname = "material-icons";
5   version = "4.0.0";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "material-design-icons";
10     rev = finalAttrs.version;
11     hash = "sha256-wX7UejIYUxXOnrH2WZYku9ljv4ZAlvgk8EEJJHOCCjE=";
12   };
14   dontConfigure = true;
15   dontBuild = true;
17   installPhase = ''
18     runHook preInstall
20     mkdir -p $out/share/fonts/truetype
21     cp font/*.ttf $out/share/fonts/truetype
23     mkdir -p $out/share/fonts/opentype
24     cp font/*.otf $out/share/fonts/opentype
26     runHook postInstall
27   '';
29   passthru.updateScript = nix-update-script { };
31   meta = with lib; {
32     description = "System status icons by Google, featuring material design";
33     homepage = "https://material.io/icons";
34     license = licenses.asl20;
35     platforms = platforms.all;
36     maintainers = with maintainers; [ mpcsh ];
37   };