1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 18:12:46 +00:00
nixpkgs/pkgs/data/fonts/fira-mono/default.nix

29 lines
823 B
Nix
Raw Normal View History

2017-08-10 20:43:49 +01:00
{ stdenv, fetchzip }:
2015-04-10 21:35:34 +01:00
2017-08-10 20:43:49 +01:00
fetchzip {
2015-10-10 12:35:52 +01:00
name = "fira-mono-3.206";
2015-04-10 21:35:34 +01:00
2018-06-10 19:21:23 +01:00
url = https://github.com/mozilla/Fira/archive/4.106.zip;
2015-04-10 21:35:34 +01:00
2017-08-10 20:43:49 +01:00
postFetch = ''
mkdir -p $out/share/fonts
2018-06-10 19:21:23 +01:00
unzip -j $downloadedFile Fira-4.106/otf/FiraMono\*.otf -d $out/share/fonts/opentype
2015-04-10 21:35:34 +01:00
'';
2018-06-10 19:21:23 +01:00
sha256 = "1ci3fxhdwabvfj4nl16pwcgqnh7s2slp8vblribk8zkpx8cbp1dj";
2017-08-10 20:43:49 +01:00
2015-04-10 21:35:34 +01:00
meta = with stdenv.lib; {
2018-06-10 19:21:23 +01:00
homepage = https://mozilla.github.io/Fira/;
2015-04-10 21:35:34 +01:00
description = "Monospace font for Firefox OS";
longDescription = ''
Fira Mono is a monospace font designed by Erik Spiekermann,
Ralph du Carrois, Anja Meiners and Botio Nikoltchev of Carrois
Type Design for Mozilla Firefox OS. Available in Regular,
Medium, and Bold.
'';
license = licenses.ofl;
maintainers = [ maintainers.rycee ];
platforms = platforms.all;
};
}