summary refs log tree commit diff
path: root/pkgs/data/fonts/inconsolata-nerdfont/default.nix
blob: b4356e73d5c7eb8abca22c5612abd967a686b26a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, fetchzip }:

let
  version = "2.0.0";
in fetchzip {
  name = "inconsolata-nerdfont-${version}";

  url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v${version}/Inconsolata.zip";

  postFetch = ''
    mkdir -p $out/share/fonts/inconsolata-nerdfont
    unzip -j $downloadedFile -d $out/share/fonts/inconsolata-nerdfont
  '';

  sha256 = "06i1akjblqd038cn5lvz67lwp6afpv31vqcfdihp66qisgbgm4w9";

  meta = with lib; {
    description = ''
      Nerd Fonts is a project that attempts to patch as many developer targeted
      and/or used fonts as possible. The patch is to specifically add a high
      number of additional glyphs from popular 'iconic fonts' such as Font
      Awesome, Devicons, Octicons, and others.
    '';
    homepage = https://github.com/ryanoasis/nerd-fonts;
    license = licenses.mit;
    platforms = platforms.all;
  };
}