summary refs log tree commit diff
path: root/pkgs/data/fonts/terminus-font-ttf/default.nix
blob: e9adc4c0422bbcd22906945f5f71889e5261d999 (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
29
30
31
32
33
34
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "terminus-font-ttf-${version}";
  version = "4.40.1";

  src = fetchurl {
    url = "http://files.ax86.net/terminus-ttf/files/${version}/terminus-ttf-${version}.zip";
    sha256 = "c3cb690c2935123035a0b1f3bfdd9511c282dab489cd423e161a47c592edf188";
  };

  buildInputs = [unzip];

  installPhase = ''
    for i in *.ttf; do
      local destname="$(echo "$i" | sed -E 's|-[[:digit:].]+\.ttf$|.ttf|')"
      install -Dm 644 "$i" "$out/share/fonts/truetype/$destname"
    done

    install -Dm 644 COPYING "$out/share/doc/COPYING"
  '';

  meta = with stdenv.lib; {
    description = "A clean fixed width TTF font";
    longDescription = ''
      Monospaced bitmap font designed for long work with computers
      (TTF version, mainly for Java applications)
    '';
    homepage = http://files.ax86.net/terminus-ttf;
    license = licenses.ofl;
    maintainers = with maintainers; [ okasu ];
    platforms = platforms.linux;
  };
}