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

30 lines
819 B
Nix
Raw Normal View History

{ stdenv, fetchzip }:
2015-07-08 15:39:05 +00:00
let
2018-02-28 01:37:12 +00:00
version = "1.205";
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
2015-07-08 15:39:05 +00:00
'';
2018-02-28 01:37:12 +00:00
sha256 = "0h8b89d1n3y56k7x9zrwm9fic09ccg1mc7g1258g152m5g6z6zms";
2015-07-08 15:39:05 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/tonsky/FiraCode;
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;
};
}