summary refs log tree commit diff
path: root/pkgs/data/fonts/arkpandora/default.nix
blob: 59be4fd14c8921870669ebbaa5905fd167d3c665 (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
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
  name = "arkpandora-${version}";
  version = "2.04";

  src = fetchurl {
    urls = [
      "ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ttf-arkpandora-${version}.tgz"
      "http://distcache.FreeBSD.org/ports-distfiles/ttf-arkpandora-${version}.tgz"
      "http://www.users.bigpond.net.au/gavindi/ttf-arkpandora-${version}.tgz"
      ];
    sha256 = "16mfxwlgn6vs3xn00hha5dnmz6bhjiflq138y4zcq3yhk0y9bz51";
  };

  installPhase = ''
    mkdir -p $out/share/fonts/truetype
    cp *.ttf $out/share/fonts/truetype
  '';

  meta = {
    description = "Font, metrically identical to Arial and Times New Roman";
    platforms = stdenv.lib.platforms.unix;
  };
}