evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fi / fira-mono / package.nix
blob5925b665eb81ce282d562237b23d1c4536cd4450
1 { lib
2 , stdenvNoCC
3 , fetchzip
4 }:
6 stdenvNoCC.mkDerivation rec {
7   pname = "fira-mono";
8   version = "3.2";
10   src = fetchzip {
11     url = "https://bboxtype.com/downloads/Fira/Fira_Mono_${lib.replaceStrings ["."] ["_"] version}.zip";
12     hash = "sha256-Ukc+K2sdSz+vUQFD8mmwJHZQ3N68oM4fk6YzGLwzAfQ=";
13   };
15   installPhase = ''
16     runHook preInstall
18     install -Dm644 Fonts/FiraMono_OTF*/*.otf -t $out/share/fonts/opentype
20     runHook postInstall
21   '';
23   meta = with lib; {
24     homepage = "https://bboxtype.com/fira/";
25     description = "Monospace font for Firefox OS";
26     longDescription = ''
27       Fira Mono is a monospace font designed by Erik Spiekermann,
28       Ralph du Carrois, Anja Meiners and Botio Nikoltchev of Carrois
29       Type Design for Mozilla Firefox OS. Available in Regular,
30       Medium, and Bold.
31     '';
32     license = licenses.ofl;
33     maintainers = [ maintainers.rycee ];
34     platforms = platforms.all;
35   };