summary refs log tree commit diff
path: root/pkgs/data/fonts/inconsolata/default.nix
blob: 7eded5deab48ed89cdac7c10a93cb85a86da49fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, google-fonts }:

stdenv.mkDerivation rec {
  name = "inconsolata-${version}";

  inherit (google-fonts) src version;

  installPhase = ''
    install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/*.ttf
  '';

  meta = with stdenv.lib; {
    homepage = https://www.levien.com/type/myfonts/inconsolata.html;
    description = "A monospace font for both screen and print";
    maintainers = with maintainers; [ mikoim raskin rycee ];
    license = licenses.ofl;
    platforms = platforms.all;
  };
}