about summary refs log tree commit diff
path: root/pkgs/data/fonts/inconsolata/default.nix
blob: caa67256a1fe1b301188dd15bc3eb23f355fe574 (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
{ stdenv, fetchurl }:

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

  src = fetchurl {
    url = "http://www.levien.com/type/myfonts/Inconsolata.otf";
    sha256 = "06js6znbcf7swn8y3b8ki416bz96ay7d3yvddqnvi88lqhbfcq8m";
  };

  phases = [ "installPhase" ];

  installPhase = ''
    mkdir -p $out/share/fonts/opentype
    cp -v $src $out/share/fonts/opentype/inconsolata.otf
  '';

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