about summary refs log tree commit diff
path: root/pkgs/data/fonts/arkpandora/default.nix
blob: 049bc8c911cd4fe80d645db6c324b72e48f4f8c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
args : with args; 
let version = lib.attrByPath ["version"] "2.04" args; in
rec {
  src = fetchurl {
    url = "http://www.users.bigpond.net.au/gavindi/ttf-arkpandora-${version}.tgz";
    sha256 = "16mfxwlgn6vs3xn00hha5dnmz6bhjiflq138y4zcq3yhk0y9bz51";
  };

  buildInputs = [];
  configureFlags = [];

  /* doConfigure should be specified separately */
  phaseNames = ["doUnpack" "installFonts"];
      
  name = "arkpandora-" + version;
  meta = {
    description = "ArkPandora fonts, metrically identical to Arial and Times New Roman.";
  };
}