nixpkgs-suyu/pkgs/data/fonts/montserrat/default.nix

29 lines
898 B
Nix
Raw Normal View History

2021-02-18 09:56:17 +01:00
{ lib, fetchFromGitHub }:
2016-02-27 23:22:50 +01:00
2017-08-10 21:43:49 +02:00
let
2021-02-18 09:56:17 +01:00
pname = "montserrat";
version = "7.210";
in fetchFromGitHub {
name = "${pname}-${version}";
owner = "JulietaUla";
repo = pname;
rev = "v${version}";
sha256 = "sha256-C6T0Iz1rFC+EsKFJRil2jGTMQ4X7wR80E3eORL5qi0U=";
2016-02-27 23:22:50 +01:00
2017-08-10 21:43:49 +02:00
postFetch = ''
2021-02-18 09:56:17 +01:00
tar xf $downloadedFile --strip 1
install -Dm 444 fonts/otf/*.otf -t $out/share/fonts/otf
install -Dm 444 fonts/ttf/*.ttf -t $out/share/fonts/ttf
install -Dm 444 fonts/webfonts/*.woff -t $out/share/fonts/woff
install -Dm 444 fonts/webfonts/*.woff2 -t $out/share/fonts/woff2
2016-02-27 23:22:50 +01:00
'';
meta = with lib; {
2016-02-27 23:22:50 +01:00
description = "A geometric sans serif font with extended latin support (Regular, Alternates, Subrayada)";
2021-02-18 09:56:17 +01:00
homepage = "https://www.fontspace.com/julieta-ulanovsky/montserrat";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ scolobb jk ];
2016-02-27 23:22:50 +01:00
};
}