mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
material-icons-ttf: init at 3.0.1
There was no package for this icon set, and now there is!
This commit is contained in:
parent
87b215d5f7
commit
bb6bbce003
@ -377,6 +377,7 @@
|
||||
MostAwesomeDude = "Corbin Simpson <cds@corbinsimpson.com>";
|
||||
mounium = "Katona László <muoniurn@gmail.com>";
|
||||
MP2E = "Cray Elliott <MP2E@archlinux.us>";
|
||||
mpcsh = "Mark Cohen <m@mpc.sh>";
|
||||
mpscholten = "Marc Scholten <marc@mpscholten.de>";
|
||||
mpsyco = "Francis St-Amour <fr.st-amour@gmail.com>";
|
||||
msackman = "Matthew Sackman <matthew@wellquite.org>";
|
||||
|
26
pkgs/data/fonts/material-icons-ttf/default.nix
Normal file
26
pkgs/data/fonts/material-icons-ttf/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -13034,6 +13034,8 @@ with pkgs;
|
||||
|
||||
man-pages = callPackage ../data/documentation/man-pages { };
|
||||
|
||||
material-icons-ttf = callPackage ../data/fonts/material-icons-ttf { };
|
||||
|
||||
meslo-lg = callPackage ../data/fonts/meslo-lg {};
|
||||
|
||||
miscfiles = callPackage ../data/misc/miscfiles { };
|
||||
|
Loading…
Reference in New Issue
Block a user