3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/fonts/fira-mono/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
858 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2015-04-10 21:35:34 +01:00
let version = "4.202";
in fetchzip {
name = "fira-mono-${version}";
2015-04-10 21:35:34 +01:00
url = "https://github.com/mozilla/Fira/archive/${version}.zip";
2015-04-10 21:35:34 +01:00
2017-08-10 20:43:49 +01:00
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile Fira-${version}/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
meta = with lib; {
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;
};
}