30 lines
798 B
Nix
30 lines
798 B
Nix
|
# Originally packaged for ArchLinux.
|
||
|
#
|
||
|
# https://aur.archlinux.org/packages/ttf-montserrat/
|
||
|
|
||
|
{ lib, fetchzip }:
|
||
|
|
||
|
let
|
||
|
version = "1.0";
|
||
|
in fetchzip {
|
||
|
name = "montserrat-${version}";
|
||
|
|
||
|
url = "https://marvid.fr/~eeva/mirror/Montserrat.tar.gz";
|
||
|
|
||
|
postFetch = ''
|
||
|
tar -xzf $downloadedFile --strip-components=1
|
||
|
mkdir -p $out/share/fonts/montserrat
|
||
|
cp *.ttf $out/share/fonts/montserrat
|
||
|
'';
|
||
|
|
||
|
sha256 = "11sdgvhaqg59mq71aqwqp2mb428984hjxy7hd1vasia9kgk8259w";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A geometric sans serif font with extended latin support (Regular, Alternates, Subrayada)";
|
||
|
homepage = "https://www.fontspace.com/julieta-ulanovsky/montserrat";
|
||
|
license = licenses.ofl;
|
||
|
platforms = platforms.all;
|
||
|
maintainers = with maintainers; [ scolobb ];
|
||
|
};
|
||
|
}
|