c9eb44eab3
* make font derivations fixed-output where applicable * fix dead links * `stdenv.lib` -> `lib` where `stdenv` is not involved * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "3.3.92";
|
|
in fetchFromGitHub {
|
|
name = "material-design-icons-${version}";
|
|
owner = "Templarian";
|
|
repo = "MaterialDesign-Webfont";
|
|
rev = "v${version}";
|
|
|
|
postFetch = ''
|
|
tar xf $downloadedFile --strip=1
|
|
mkdir -p $out/share/fonts/{eot,svg,truetype,woff,woff2}
|
|
cp fonts/*.eot $out/share/fonts/eot/
|
|
cp fonts/*.svg $out/share/fonts/svg/
|
|
cp fonts/*.ttf $out/share/fonts/truetype/
|
|
cp fonts/*.woff $out/share/fonts/woff/
|
|
cp fonts/*.woff2 $out/share/fonts/woff2/
|
|
'';
|
|
sha256 = "0dbm4qfd0b91yrw3cv4i377pnm98fgj936nk1m5wlx8mx8jahz48";
|
|
|
|
meta = with lib; {
|
|
description = "3200+ Material Design Icons from the Community";
|
|
longDescription = ''
|
|
Material Design Icons' growing icon collection allows designers and
|
|
developers targeting various platforms to download icons in the format,
|
|
color and size they need for any project.
|
|
'';
|
|
homepage = https://materialdesignicons.com;
|
|
license = with licenses; [
|
|
asl20 # for icons from: https://github.com/google/material-design-icons
|
|
ofl
|
|
];
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ vlaci ];
|
|
};
|
|
}
|