mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5bb66abf2b
No need for the executable permissions on fonts.
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "fira";
|
|
version = "4.202";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = "Fira";
|
|
rev = version;
|
|
hash = "sha256-HLReqgL0PXF5vOpwLN0GiRwnzkjGkEVEyOEV2Z4R0oQ=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install --mode=-x -Dt $out/share/fonts/opentype otf/*.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;
|
|
};
|
|
}
|