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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
973 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2015-07-08 17:39:05 +02:00
stdenvNoCC.mkDerivation rec {
pname = "fira-code";
2021-12-09 00:52:55 +01:00
version = "6.2";
2015-07-08 17:39:05 +02:00
src = fetchzip {
url = "https://github.com/tonsky/FiraCode/releases/download/${version}/Fira_Code_v${version}.zip";
stripRoot = false;
hash = "sha256-UHOwZL9WpCHk6vZaqI/XfkZogKgycs5lWg1p0XdQt0A=";
};
2015-07-08 17:39:05 +02:00
# only extract the variable font because everything else is a duplicate
installPhase = ''
runHook preInstall
2023-01-29 05:10:06 +01:00
install -Dm644 variable_ttf/*-VF.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/tonsky/FiraCode";
2015-07-08 17:39:05 +02: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;
};
}