mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
fira-sans: init at 4.202
This commit is contained in:
parent
ee967c77a2
commit
81b35a5dbe
33
pkgs/by-name/fi/fira-sans/package.nix
Normal file
33
pkgs/by-name/fi/fira-sans/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ lib
|
||||
, stdenvNoCC
|
||||
, fira-mono
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "fira-sans";
|
||||
inherit (fira-mono) version src;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install --mode=-x -Dt $out/share/fonts/opentype otf/FiraSans*.otf
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://mozilla.github.io/Fira/";
|
||||
description = "Sans-serif font for Firefox OS";
|
||||
longDescription = ''
|
||||
Fira Sans is a sans-serif font designed by Erik Spiekermann,
|
||||
Ralph du Carrois, Anja Meiners and Botio Nikoltchev of Carrois
|
||||
Type Design for Mozilla Firefox OS. It is closely related to
|
||||
Spiekermann's FF Meta typeface. Available in Two, Four, Eight,
|
||||
Hair, Thin, Ultra Light, Extra Light, Light, Book, Regular,
|
||||
Medium, Semi Bold, Bold, Extra Bold, Heavy weights with
|
||||
corresponding italic versions.
|
||||
'';
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user