nixpkgs/pkgs/data/fonts/fira-code/default.nix

31 lines
884 B
Nix
Raw Normal View History

{ stdenv, fetchzip }:
2015-07-08 15:39:05 +00:00
let
version = "3.1";
in fetchzip {
name = "fira-code-${version}";
2015-07-08 15:39:05 +00:00
url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode_${version}.zip";
2015-07-08 15:39:05 +00:00
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
2019-09-10 03:10:17 +00:00
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
2015-07-08 15:39:05 +00:00
'';
sha256 = "1rk5hiix282b1gsxq9kqma2q9fnydj0xl9vbrd88rf7ywvn75817";
2015-07-08 15:39:05 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/tonsky/FiraCode";
2015-07-08 15:39:05 +00:00
description = "Monospace font with programming ligatures";
longDescription = ''
Fira Code is a monospace font extending the Fira Mono font with
a set of ligatures for common programming multi-character
combinations.
'';
license = licenses.ofl;
maintainers = [ maintainers.rycee ];
platforms = platforms.all;
};
}